You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/e2e/tests/critical-path/workbench/command-results.e2e.ts
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -72,8 +72,7 @@ test('Verify that user can see the results found in the table view by default fo
72
72
awaitt.expect(awaitworkbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssTableViewTypeOption).visible).ok(`The table view is selected by default for command ${command}`);
73
73
}
74
74
});
75
-
test
76
-
.meta({env: env.desktop})('Verify that user can switches between views and see results according to the view rules in Workbench in results',asynct=>{
75
+
test.only('Verify that user can switches between views and see results according to the view rules in Workbench in results',asynct=>{
77
76
indexName=chance.word({length: 5});
78
77
constcommands=[
79
78
'hset doc:10 title "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud" url "redis.io" author "Test" rate "undefined" review "0" comment "Test comment"',
.meta({env: env.desktop,rte: rte.standalone})('Verify that user can edit and run automatically added "FT._LIST" and "FT.INFO {index}" scripts in Workbench and see the results',asynct=>{
29
+
test('Verify that user can edit and run automatically added "FT._LIST" and "FT.INFO {index}" scripts in Workbench and see the results',asynct=>{
31
30
indexName=chance.word({length: 5});
32
31
keyName=chance.word({length: 5});
33
32
constcommandsForSend=[
@@ -54,8 +53,7 @@ test
54
53
awaitt.switchToIframe(workbenchPage.iframe);
55
54
awaitt.expect(workbenchPage.queryColumns.textContent).contains('name','The result of the FT.INFO command');
56
55
});
57
-
test
58
-
.meta({env: env.desktop,rte: rte.standalone})('Verify that user can edit and run automatically added "Search" script in Workbench and see the results',asynct=>{
56
+
test('Verify that user can edit and run automatically added "Search" script in Workbench and see the results',asynct=>{
59
57
indexName=chance.word({length: 5});
60
58
keyName=chance.word({length: 5});
61
59
constcommandsForSend=[
@@ -79,8 +77,7 @@ test
79
77
awaitt.expect(key.exists).ok('The added key is in the Search result');
80
78
awaitt.expect(name.exists).ok('The added key name field is in the Search result');
81
79
});
82
-
test
83
-
.meta({env: env.desktop,rte: rte.standalone})('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results',asynct=>{
80
+
test('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results',asynct=>{
84
81
indexName=chance.word({length: 5});
85
82
constaggregationResultField='max_price';
86
83
constcommandsForSend=[
@@ -102,8 +99,7 @@ test
102
99
awaitt.expect(workbenchPage.queryTableResult.textContent).contains(aggregationResultField,'The aggregation field name is in the Search result');
103
100
awaitt.expect(workbenchPage.queryTableResult.textContent).contains('100','The aggregation max value is in the Search result');
104
101
});
105
-
test
106
-
.meta({rte: rte.standalone})('Verify that when the “Manual” option clicked, user can see the Editor is automatically prepopulated with the information',asynct=>{
102
+
test('Verify that when the “Manual” option clicked, user can see the Editor is automatically prepopulated with the information',asynct=>{
107
103
constinformation=[
108
104
'// Workbench is the advanced Redis command-line interface that allows to send commands to Redis, read and visualize the replies sent by the server.',
109
105
'// Enter multiple commands at different rows to run them at once.',
0 commit comments