Skip to content

Commit 4a77f3f

Browse files
committed
Fix more tests
1 parent bea6520 commit 4a77f3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e/page-objects/pages/home/asset-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class AssetListPage {
295295
this.customNetworkSelectedOption(networkName),
296296
);
297297
await this.driver.clickElement(this.customTokenModalOption);
298-
await this.driver.waitForSelector(this.modalWarningBanner);
298+
await this.driver.waitForSelector(this.tokenAddressInput);
299299
await this.driver.fill(this.tokenAddressInput, tokenAddress);
300300
await this.driver.waitForSelector(this.tokenSymbolTitle);
301301

test/e2e/tests/multichain/web-socket-connection.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe('Multichain account Web Socket', function (this: Suite) {
2525
await accountListPage.addMultichainAccount();
2626

2727
// intended delay to allow for network requests to complete
28-
await driver.delay(2000);
28+
await driver.delay(5000);
2929
const connectionCount =
3030
LocalWebSocketServer.getServerInstance().getWebsocketConnectionCount();
3131
assert.equal(

0 commit comments

Comments
 (0)