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 bcc88dba46..0e30118427 100644 --- a/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts +++ b/tests/e2e/tests/critical-path/workbench/command-results.e2e.ts @@ -72,8 +72,7 @@ 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 - .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 => { +test('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"', @@ -92,9 +91,8 @@ test await workbenchPage.selectViewTypeText(); await t.expect(await workbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssQueryTextResult).visible).ok('The result is displayed in Text view'); }); -//skipped due the inaccessibility of the iframe -test.skip - .meta({ env: env.desktop })('Verify that user can switches between Table and Text for Client List and see results corresponding to their views', async t => { +// Skipped due to issue https://redislabs.atlassian.net/browse/RI-3524 +test.skip('Verify that user can switches between Table and Text for Client List and see results corresponding to their views', async t => { const command = 'CLIENT LIST'; //Send command and check table view is default await workbenchPage.sendCommandInWorkbench(command); diff --git a/tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts b/tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts index 8be3417ee9..6d694cb320 100644 --- a/tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts +++ b/tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts @@ -27,7 +27,7 @@ fixture `Default scripts area at Workbench` await deleteStandaloneDatabaseApi(ossStandaloneRedisearch); }); test - .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', async t => { + .meta({ 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', async t => { indexName = chance.word({ length: 5 }); keyName = chance.word({ length: 5 }); const commandsForSend = [ @@ -55,7 +55,7 @@ test await t.expect(workbenchPage.queryColumns.textContent).contains('name', 'The result of the FT.INFO command'); }); test - .meta({ env: env.desktop, rte: rte.standalone })('Verify that user can edit and run automatically added "Search" script in Workbench and see the results', async t => { + .meta({ rte: rte.standalone })('Verify that user can edit and run automatically added "Search" script in Workbench and see the results', async t => { indexName = chance.word({ length: 5 }); keyName = chance.word({ length: 5 }); const commandsForSend = [ @@ -80,7 +80,7 @@ test await t.expect(name.exists).ok('The added key name field is in the Search result'); }); test - .meta({ env: env.desktop, rte: rte.standalone })('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results', async t => { + .meta({ rte: rte.standalone })('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results', async t => { indexName = chance.word({ length: 5 }); const aggregationResultField = 'max_price'; const commandsForSend = [ diff --git a/tests/e2e/tests/regression/workbench/command-results.e2e.ts b/tests/e2e/tests/regression/workbench/command-results.e2e.ts index 12bdc3935b..7a7745d9ed 100644 --- a/tests/e2e/tests/regression/workbench/command-results.e2e.ts +++ b/tests/e2e/tests/regression/workbench/command-results.e2e.ts @@ -19,8 +19,8 @@ const commandsForIndex = [ 'HMSET product:1 price 20', 'HMSET product:2 price 100' ]; -// skip due to errors of FT.SEARCH issue https://redislabs.atlassian.net/browse/RI-3501 -fixture.skip `Command results at Workbench` + +fixture `Command results at Workbench` .meta({type: 'regression', rte: rte.standalone }) .page(commonUrl) .beforeEach(async t => { @@ -72,8 +72,8 @@ test await t.switchToIframe(workbenchPage.iframe); await t.expect(await workbenchPage.queryTableResult.exists).ok('The table view is not switched for command FT.AGGREGATE'); }); -// skip due to inaccessibility of CLIENT LIST in plugin -test +// Skipped due to issue https://redislabs.atlassian.net/browse/RI-3524 +test.skip .meta({ env: env.web })('Verify that user can switches between views and see results according to this view in full mode in Workbench', async t => { const command = 'CLIENT LIST'; //Send command and check table view is default in full mode diff --git a/tests/e2e/tests/regression/workbench/raw-mode.e2e.ts b/tests/e2e/tests/regression/workbench/raw-mode.e2e.ts index cbc2db5a72..1589fa3a3c 100644 --- a/tests/e2e/tests/regression/workbench/raw-mode.e2e.ts +++ b/tests/e2e/tests/regression/workbench/raw-mode.e2e.ts @@ -100,8 +100,7 @@ test await t.switchToMainWindow(); await workbenchPage.sendCommandInWorkbench(`FT.DROPINDEX ${indexName} DD`); await deleteStandaloneDatabaseApi(ossStandaloneRedisearch); - }) - .meta({ env: env.desktop })('Display Raw mode for plugins', async t => { + })('Display Raw mode for plugins', async t => { const commandsForSend = [ `FT.CREATE ${indexName} ON HASH PREFIX 1 product: SCHEMA name TEXT`, `HMSET product:1 name "${unicodeValue}"`, diff --git a/tests/e2e/tests/regression/workbench/scripting-area.e2e.ts b/tests/e2e/tests/regression/workbench/scripting-area.e2e.ts index 5e8c7a6601..4a3ada6189 100644 --- a/tests/e2e/tests/regression/workbench/scripting-area.e2e.ts +++ b/tests/e2e/tests/regression/workbench/scripting-area.e2e.ts @@ -15,7 +15,7 @@ const settingsPage = new SettingsPage(); const indexName = chance.word({ length: 5 }); let keyName = chance.word({ length: 10 }); -fixture`Scripting area at Workbench` +fixture `Scripting area at Workbench` .meta({ type: 'regression' }) .page(commonUrl) .beforeEach(async t => {