File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/e2e/tests/web/critical-path/workbench Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ fixture `Default scripts area at Workbench`
37
37
await workbenchPage . sendCommandInWorkbench ( `FT.DROPINDEX ${ indexName } DD` ) ;
38
38
await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneRedisearch ) ;
39
39
} ) ;
40
- test
40
+ test . only
41
41
. requestHooks ( logger ) ( 'Verify that user can run automatically "FT._LIST" and "FT.INFO {index}" scripts in Workbench and see the results' , async t => {
42
42
indexName = 'idx:schools' ;
43
43
keyName = chance . word ( { length : 5 } ) ;
46
46
`HMSET product:1 name "${ keyName } "` ,
47
47
`HMSET product:2 name "${ keyName } "`
48
48
] ;
49
- const addedScript = ` FT._LIST // Return a list of all indices \n' +
50
- '\n' +
51
- ' FT.INFO "${ indexName } "" // Display information about a particular index ` ;
49
+ const addedScript = ' FT._LIST \n' +
50
+
51
+ ` FT.INFO "${ indexName } "`;
52
52
// Send commands
53
53
await workbenchPage . sendCommandInWorkbench ( commandsForSend . join ( '\n' ) ) ;
54
54
// Run automatically added "FT._LIST" and "FT.INFO {index}" scripts
You can’t perform that action at this time.
0 commit comments