Skip to content

Commit ca876f7

Browse files
authored
Merge branch 'main' into CEUX-713-pna-25
2 parents 5236ca2 + 54fd624 commit ca876f7

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

test/e2e/page-objects/pages/home/homepage.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ class HomePage {
196196
);
197197
}
198198

199+
async clickBackupRemindMeLaterButtonSafe(): Promise<void> {
200+
await this.driver.clickElementSafe(this.backupRemindMeLaterButton);
201+
}
202+
199203
async closeSurveyToast(surveyName: string): Promise<void> {
200204
console.log(`Close survey toast for ${surveyName}`);
201205
await this.driver.waitForSelector({

test/e2e/tests/account/incremental-security.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ describe('Incremental Security', function (this: Suite) {
9696
// copy the wallet address
9797
const homePage = new HomePage(driver);
9898
await homePage.checkPageIsLoaded();
99+
// TODO: This is a temporary fix to unblock CI. Remove this once the issue is fixed.
100+
await homePage.clickBackupRemindMeLaterButtonSafe();
99101
await homePage.headerNavbar.clickAddressCopyButton();
100102

101103
// switched to Dapp and send eth to the current account

test/e2e/tests/settings/change-password.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ describe('Change wallet password', function () {
7373
const homePage = new HomePage(driver);
7474
await homePage.checkPageIsLoaded();
7575

76+
// TODO: This is a temporary fix to unblock CI. Remove this once the issue is fixed.
77+
await homePage.clickBackupRemindMeLaterButtonSafe();
78+
7679
await doPasswordChangeAndLockWallet(driver, OLD_PASSWORD, NEW_PASSWORD);
7780

7881
const loginPage = new LoginPage(driver);

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34217,9 +34217,9 @@ __metadata:
3421734217
linkType: hard
3421834218

3421934219
"node-forge@npm:^1, node-forge@npm:^1.2.1":
34220-
version: 1.3.1
34221-
resolution: "node-forge@npm:1.3.1"
34222-
checksum: 10/05bab6868633bf9ad4c3b1dd50ec501c22ffd69f556cdf169a00998ca1d03e8107a6032ba013852f202035372021b845603aeccd7dfcb58cdb7430013b3daa8d
34220+
version: 1.3.2
34221+
resolution: "node-forge@npm:1.3.2"
34222+
checksum: 10/dcc54aaffe0cf52367214a20c0032aa9b209d9095dd14526504f1972d1900a07e96046b3684cb0c8d0cc3d48744dd18e02b7b447ab28fac615ffb850beeabf18
3422334223
languageName: node
3422434224
linkType: hard
3422534225

0 commit comments

Comments
 (0)