diff --git a/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts b/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts index 1d7cb7206c..bcc88dba46 100644 --- a/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts +++ b/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts @@ -72,7 +72,8 @@ test('Verify that user can see the results found in the table view by default fo await t.expect(await workbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssTableViewTypeOption).visible).ok(`The table view is selected by default for command ${command}`); } }); -test('Verify that user can switches between views and see results according to the view rules in Workbench in results', async t => { +test + .meta({ env: env.desktop })('Verify that user can switches between views and see results according to the view rules in Workbench in results', async t => { indexName = chance.word({ length: 5 }); const commands = [ '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"', @@ -80,7 +81,7 @@ test('Verify that user can switches between views and see results according to t `FT.SEARCH ${indexName} * limit 0 10000` ]; //Send commands and check table view is default for Search command - for(const command of commands) { + for (const command of commands) { await workbenchPage.sendCommandInWorkbench(command); } await t.expect(await workbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssTableViewTypeOption).visible).ok('The table view is selected by default for command FT.SEARCH');