Skip to content

Commit b886b1d

Browse files
committed
updates
1 parent dd057b4 commit b886b1d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

tests/e2e/pageObjects/components/bottom-panel/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export class Cli {
167167
*/
168168
async getWarningMessageText(command: string): Promise<string> {
169169

170-
const executedCommand = await this.cliCommandExecuted.withExactText(command);
170+
const executedCommand = await this.cliCommandExecuted.withExactText(command);
171171
return await executedCommand.nextSibling(0).textContent;
172172
}
173173

@@ -176,6 +176,6 @@ export class Cli {
176176
* @param index index of the command in the CLI, by default is the last one
177177
*/
178178
async getExecutedCommandTextByIndex(index = -1): Promise<string> {
179-
return await this.cliCommandExecuted.nth(index).textContent;
179+
return await this.cliCommandExecuted.nth(index).textContent;
180180
}
181181
}

tests/e2e/tests/critical-path/triggers-and-functions/libraries.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
TriggersAndFunctionsLibrariesPage
77
} from '../../../pageObjects';
88
import { commonUrl, ossStandaloneRedisGears } from '../../../helpers/conf';
9-
import { rte } from '../../../helpers/constants';
9+
import { rte } from '../../../helpers/constants';
1010
import { DatabaseAPIRequests } from '../../../helpers/api/api-database';
1111
import { Common } from '../../../helpers/common';
1212

tests/e2e/tests/regression/database/cloud-sso.e2e.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ test
5050

5151
// Verify that user can not see the import Cloud databases on the Auto-discovery flow for docker build
5252
await t.click(welcomePage.addDbAutoBtn);
53+
// Verify that when SSO flag disabled - Use Cloud API Keys displayed not as dropdown
5354
await t.expect(myRedisDatabasePage.AddRedisDatabase.useCloudAccount.exists).notOk('Use Cloud Account accordion displayed for docker build');
5455
await t.expect(myRedisDatabasePage.AddRedisDatabase.useCloudKeys.exists).notOk('Use Cloud Keys accordion displayed for docker build');
5556
});
@@ -79,6 +80,7 @@ test
7980
await t.expect(welcomePage.importCloudDbBtn.exists).ok('Import Cloud database button not displayed when SSO feature enabled');
8081

8182
await t.click(welcomePage.addDbAutoBtn);
83+
// Verify that RE Cloud auto-discovery options Use Cloud Account and Use Cloud API Keys are displayed on Welcome screen
8284
await t.expect(myRedisDatabasePage.AddRedisDatabase.useCloudAccount.exists).ok('Use Cloud Account accordion not displayed when SSO feature enabled');
8385
await t.expect(myRedisDatabasePage.AddRedisDatabase.useCloudKeys.exists).ok('Use Cloud Keys accordion not displayed when SSO feature enabled');
8486
});

0 commit comments

Comments
 (0)