Skip to content

Commit 0e01467

Browse files
fix for comments #2
1 parent e78e814 commit 0e01467

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
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

9898
// Go to Browser Page
9999
await t.click(myRedisDatabasePage.NavigationPanel.browserButton);
100-
// Verify that user can see a custom message when he tris to run PSUBSCRIBE command in CLI or Workbench: “Use Pub/Sub to see the messages published to all channels in your database”
100+
// Verify that user can see a custom message when he tries to run PSUBSCRIBE command in CLI or Workbench: “Use Pub/Sub to see the messages published to all channels in your database”
101101
await pubSubPage.Cli.sendCommandInCli(commandFirst);
102102
await t.click(pubSubPage.Cli.cliExpandButton);
103103
await t.expect(await pubSubPage.Cli.getWarningMessageText(commandFirst)).eql('Use Pub/Sub to see the messages published to all channels in your database.', 'Message is not displayed', { timeout: 10000 });
@@ -107,7 +107,7 @@ test('Verify that user can see a internal link to pubsub window under word “Pu
107107
await t.click(pubSubPage.Cli.cliLinkToPubSub);
108108
await t.expect(pubSubPage.pubSubPageContainer.exists).ok('Pubsub page is opened');
109109

110-
// Verify that user can see a custom message when he tris to run SUBSCRIBE command in CLI: “Use Pub/Sub tool to subscribe to channels.”
110+
// Verify that user can see a custom message when he tries to run SUBSCRIBE command in CLI: “Use Pub/Sub tool to subscribe to channels.”
111111
await t.click(pubSubPage.Cli.cliCollapseButton);
112112
await pubSubPage.Cli.sendCommandInCli(commandSecond);
113113
await t.click(pubSubPage.Cli.cliExpandButton);
@@ -118,7 +118,7 @@ test('Verify that user can see a internal link to pubsub window under word “Pu
118118
await t.click(pubSubPage.Cli.cliLinkToPubSub);
119119
await t.expect(pubSubPage.pubSubPageContainer.exists).ok('Pubsub page is opened');
120120

121-
// Verify that user can see a custom message when he tris to run SUBSCRIBE command in Workbench: “Use Pub/Sub tool to subscribe to channels.”
121+
// Verify that user can see a custom message when he tries to run SUBSCRIBE command in Workbench: “Use Pub/Sub tool to subscribe to channels.”
122122
await t.click(pubSubPage.NavigationPanel.workbenchButton);
123123
await workbenchPage.sendCommandInWorkbench(commandSecond);
124124
await t.expect(await workbenchPage.commandExecutionResult.textContent).eql('Use Pub/Sub tool to subscribe to channels.', 'Message is not displayed', { timeout: 10000 });

0 commit comments

Comments
 (0)