Skip to content

Commit

Permalink
test(extension): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
oldGreg5 committed May 13, 2024
1 parent aa92ce3 commit 2f9f2c9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion packages/e2e-tests/src/assert/assetInputAssert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class AssetInputAssert {
async assertSeeAssetInput(index = 1) {
const assetInput = new AssetInput(index);
await assetInput.container.waitForDisplayed();
await assetInput.assetAddButton.waitForStable();
await assetInput.assetAddButton.waitForDisplayed();
expect(await assetInput.assetAddButton.getText()).to.equal(await t('browserView.transaction.send.advanced.asset'));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ class TransactionSummaryAssert {
expect(await TransactionSummaryPage.sendingTitle(bundleIndex + 1).getText()).to.equal(
await t('core.outputSummaryList.sending')
);
await TransactionSummaryPage.recipientAddressLabel(bundleIndex + 1).scrollIntoView();
await TransactionSummaryPage.recipientAddressLabel(bundleIndex + 1).waitForDisplayed();
expect(await TransactionSummaryPage.recipientAddressLabel(bundleIndex + 1).getText()).to.equal(
await t('core.outputSummaryList.recipientAddress')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class RecoveryPhrasePage extends CommonOnboardingElements {
}

async selectMnemonicLength(length: RecoveryPhrase): Promise<void> {
await this.mnemonicLengthSelector12.waitForClickable();
switch (length) {
case '12':
await this.mnemonicLengthSelector12.click();
Expand Down

0 comments on commit 2f9f2c9

Please sign in to comment.