@@ -12,7 +12,7 @@ const common = new Common();
12
12
let indexName = common . generateWord ( 5 ) ;
13
13
14
14
fixture `Index Schema at Workbench`
15
- . meta ( { type : 'critical_path' , env : env . desktop , rte : rte . standalone } )
15
+ . meta ( { type : 'critical_path' , rte : rte . standalone } )
16
16
. page ( commonUrl )
17
17
. beforeEach ( async t => {
18
18
await acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneRedisearch , ossStandaloneRedisearch . databaseName ) ;
@@ -25,7 +25,8 @@ fixture `Index Schema at Workbench`
25
25
await workbenchPage . sendCommandInWorkbench ( `FT.DROPINDEX ${ indexName } DD` ) ;
26
26
await deleteStandaloneDatabaseApi ( ossStandaloneRedisearch ) ;
27
27
} ) ;
28
- test ( 'Verify that user can open results in Text and Table views for FT.INFO for Hash in Workbench' , async t => {
28
+ test
29
+ . meta ( { env : env . desktop } ) ( 'Verify that user can open results in Text and Table views for FT.INFO for Hash in Workbench' , async t => {
29
30
indexName = common . generateWord ( 5 ) ;
30
31
const commandsForSend = [
31
32
`FT.CREATE ${ indexName } ON HASH PREFIX 1 product: SCHEMA name TEXT` ,
@@ -46,7 +47,8 @@ test('Verify that user can open results in Text and Table views for FT.INFO for
46
47
// Check that result is displayed in Text view
47
48
await t . expect ( workbenchPage . queryTextResult . exists ) . ok ( 'The result is displayed in Text view' ) ;
48
49
} ) ;
49
- test ( 'Verify that user can open results in Text and Table views for FT.INFO for JSON in Workbench' , async t => {
50
+ test
51
+ . meta ( { env : env . desktop } ) ( 'Verify that user can open results in Text and Table views for FT.INFO for JSON in Workbench' , async t => {
50
52
indexName = common . generateWord ( 5 ) ;
51
53
const commandsForSend = [
52
54
`FT.CREATE ${ indexName } ON JSON SCHEMA $.user.name AS name TEXT $.user.tag AS country TAG` ,
0 commit comments