Skip to content

Commit 1e49357

Browse files
authored
Fix failing tests (#17618)
* fix(e2e): Fixed failing tests * fix(ci): Fixed checking previous test runs
1 parent 5c0da71 commit 1e49357

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/actions/check-previous-test-runs/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ runs:
4242
WORKFLOW_ID=$(gh workflow list \
4343
--repo "$REPO" \
4444
--json id,name \
45+
--limit 100 \
4546
--jq ".[] | select(.name == \"${WORKFLOW_NAME}\") | .id")
4647
4748
# Fetch previous PR runs

packages/suite-desktop-core/e2e/support/testExtends/customMatchers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export const expect = baseExpect.extend({
144144
expectedContent = {
145145
header: { title: 'Receive address' },
146146
body: [transformedExpectedAddress],
147-
footer: 'Swipe up',
147+
footer: 'Tap to continue',
148148
};
149149
}
150150

packages/suite-desktop-core/e2e/tests/wallet/add-account-types.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ test.describe('Account types suite', { tag: ['@group=wallet'] }, () => {
6464
for (const { coin, accounts } of accountTypes) {
6565
for (const { type } of accounts) {
6666
await test.step(`Add and verify ${type} account for ${coin}`, async () => {
67-
await page.getByTestId('@account-menu/normal').click();
6867
const numberOfAccountsBefore = await page
6968
.getByTestId(`@account-menu/${type}/group`)
7069
.locator(

0 commit comments

Comments
 (0)