Skip to content

Commit 93b5c18

Browse files
committed
delete .only
1 parent f52069c commit 93b5c18

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

tests/e2e/tests/critical-path/pub-sub/subscribe-unsubscribe.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ test('Verify that user can see a internal link to pubsub window under word “Pu
9797
//Verify that user can see a custom message when he try to run PSUBSCRIBE command in CLI or Workbench: “Use Pub/Sub to see the messages published to all channels in your database”
9898
await cliPage.sendCommandInCli('PSUBSCRIBE');
9999
await t.click(cliPage.cliExpandButton);
100-
await t.expect(cliPage.cliWarningMessage.textContent).eql('Use Pub/Sub to see the messages published to all channels in your database.', 'Message is not displayed', { timeout: 10000 });
100+
await t.expect(cliPage.cliWarningMessage.textContent).eql('Use Pub/Sub to see the messages `published to all channels in your database.', 'Message is not displayed', { timeout: 10000 });
101101
//Verify internal link to pubsub page in CLI
102102
await t.expect(cliPage.cliLinkToPubSub.exists).ok('Link to pubsub page is not displayed');
103103
await t.click(cliPage.cliLinkToPubSub);

tests/e2e/tests/critical-path/workbench/command-results.e2e.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const commandForSend1 = 'info';
1313
const commandForSend2 = 'FT._LIST';
1414
let indexName = chance.word({ length: 5 });
1515

16-
fixture.only `Command results at Workbench`
16+
fixture `Command results at Workbench`
1717
.meta({ type: 'critical_path', rte: rte.standalone })
1818
.page(commonUrl)
1919
.beforeEach(async t => {
@@ -91,7 +91,8 @@ test('Verify that user can switches between views and see results according to t
9191
await workbenchPage.selectViewTypeText();
9292
await t.expect(await workbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssQueryTextResult).visible).ok('The result is displayed in Text view');
9393
});
94-
test('Verify that user can switches between Table and Text for Client List and see results corresponding to their views', async t => {
94+
// Skipped due to issue https://redislabs.atlassian.net/browse/RI-3524
95+
test.skip('Verify that user can switches between Table and Text for Client List and see results corresponding to their views', async t => {
9596
const command = 'CLIENT LIST';
9697
//Send command and check table view is default
9798
await workbenchPage.sendCommandInWorkbench(command);

tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const chance = new Chance();
1212
let indexName = chance.word({ length: 5 });
1313
let keyName = chance.word({ length: 5 });
1414

15-
fixture.only `Default scripts area at Workbench`
15+
fixture `Default scripts area at Workbench`
1616
.meta({type: 'critical_path'})
1717
.page(commonUrl)
1818
.beforeEach(async t => {

tests/e2e/tests/regression/workbench/command-results.e2e.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const commandsForIndex = [
2020
'HMSET product:2 price 100'
2121
];
2222

23-
fixture.only `Command results at Workbench`
23+
fixture `Command results at Workbench`
2424
.meta({type: 'regression', rte: rte.standalone })
2525
.page(commonUrl)
2626
.beforeEach(async t => {
@@ -72,7 +72,8 @@ test
7272
await t.switchToIframe(workbenchPage.iframe);
7373
await t.expect(await workbenchPage.queryTableResult.exists).ok('The table view is not switched for command FT.AGGREGATE');
7474
});
75-
test
75+
// Skipped due to issue https://redislabs.atlassian.net/browse/RI-3524
76+
test.skip
7677
.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 => {
7778
const command = 'CLIENT LIST';
7879
//Send command and check table view is default in full mode

tests/e2e/tests/regression/workbench/raw-mode.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test
8989
await t.click(workbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssReRunCommandButton));
9090
await workbenchPage.checkWorkbenchCommandResult(commandsForSend[1], `"${unicodeValue}"`);
9191
});
92-
test.only
92+
test
9393
.before(async t => {
9494
await acceptLicenseTermsAndAddDatabaseApi(ossStandaloneRedisearch, ossStandaloneRedisearch.databaseName);
9595
// Go to Workbench page

tests/e2e/tests/regression/workbench/scripting-area.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const settingsPage = new SettingsPage();
1515
const indexName = chance.word({ length: 5 });
1616
let keyName = chance.word({ length: 10 });
1717

18-
fixture.only `Scripting area at Workbench`
18+
fixture `Scripting area at Workbench`
1919
.meta({ type: 'regression' })
2020
.page(commonUrl)
2121
.beforeEach(async t => {

0 commit comments

Comments
 (0)