Skip to content

chore: refactor collectibles UI to UI package #6886

chore: refactor collectibles UI to UI package

chore: refactor collectibles UI to UI package #6886

Triggered via pull request October 1, 2024 05:25
Status Failure
Total duration 9m 38s
Artifacts 1

playwright.yml

on: pull_request
Matrix: test
Merge reports
26s
Merge reports
Fit to window
Zoom out
Zoom in

Annotations

16 errors, 24 warnings, and 10 notices
[chromium] › specs/settings/settings.spec.ts:14:3 › Settings menu › that menu item takes user to support page: tests/specs/settings/settings.spec.ts#L9
1) [chromium] › specs/settings/settings.spec.ts:14:3 › Settings menu › that menu item takes user to support page Test timeout of 30000ms exceeded while running "beforeEach" hook. 7 | 8 | test.describe('Settings menu', () => { > 9 | test.beforeEach(async ({ extensionId, globalPage, onboardingPage }) => { | ^ 10 | await globalPage.setupAndUseApiCalls(extensionId); 11 | await onboardingPage.signInWithTestAccount(extensionId); 12 | }); at /home/runner/work/extension/extension/tests/specs/settings/settings.spec.ts:9:8
[chromium] › specs/settings/settings.spec.ts:14:3 › Settings menu › that menu item takes user to support page: tests/page-object-models/onboarding.page.ts#L310
1) [chromium] › specs/settings/settings.spec.ts:14:3 › Settings menu › that menu item takes user to support page Error: page.goto: Target page, context or browser has been closed Call log: - navigating to "chrome-extension://ecglnfnhimaihdkpolkogpngodkkjhdm/index.html", waiting until "networkidle" at page-object-models/onboarding.page.ts:310 308 | ); 309 | > 310 | await this.page.goto(`chrome-extension://${id}/index.html`, { waitUntil: 'networkidle' }); | ^ 311 | 312 | iterationCounter.increment(); 313 | } while (!(await isSignedIn())); at OnboardingPage.signInWithTestAccount (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:310:23) at /home/runner/work/extension/extension/tests/specs/settings/settings.spec.ts:11:5
[chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise resolves with addresses successfully: tests/specs/rpc-get-addresses/get-addresses.spec.ts#L71
1) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise resolves with addresses successfully Error: Timed out 5000ms waiting for expect(locator).toBeVisible() Locator: getByText('Connect Leather') Expected: visible Received: <element(s) not found> Call log: - expect.toBeVisible with timeout 5000ms - waiting for getByText('Connect Leather') 69 | async function clickConnectLeatherButton(popup: Page) { 70 | const button = popup.getByText('Connect Leather'); > 71 | await test.expect(button).toBeVisible(); | ^ 72 | await button.click(); 73 | } 74 | at clickConnectLeatherButton (/home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:71:29) at /home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:108:15
[chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise resolves with addresses successfully: tests/specs/rpc-get-addresses/get-addresses.spec.ts#L66
1) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise resolves with addresses successfully Error: page.evaluate: Target page, context or browser has been closed 64 | 65 | async function initiateGetAddresses(page: Page) { > 66 | return page.evaluate(async () => (window as any).LeatherProvider?.request('getAddresses')); | ^ 67 | } 68 | 69 | async function clickConnectLeatherButton(popup: Page) { at initiateGetAddresses (/home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:66:15) at /home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:105:37
[chromium] › specs/ledger/ledger.spec.ts:35:7 › App with Ledger › withBitcoinKeysOnly › receive modal opens: tests/specs/ledger/ledger.spec.ts#L1
1) [chromium] › specs/ledger/ledger.spec.ts:35:7 › App with Ledger › withBitcoinKeysOnly › receive modal opens Test timeout of 30000ms exceeded.
[chromium] › specs/ledger/ledger.spec.ts:35:7 › App with Ledger › withBitcoinKeysOnly › receive modal opens: tests/page-object-models/home.page.ts#L56
1) [chromium] › specs/ledger/ledger.spec.ts:35:7 › App with Ledger › withBitcoinKeysOnly › receive modal opens Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('receive-crypto-asset-btn') at page-object-models/home.page.ts:56 54 | 55 | async goToReceiveDialog() { > 56 | await this.page.getByTestId(HomePageSelectors.ReceiveCryptoAssetBtn).click(); | ^ 57 | } 58 | 59 | // Open issue with Playwright's ability to copyToClipboard from legacy tests: at HomePage.goToReceiveDialog (/home/runner/work/extension/extension/tests/page-object-models/home.page.ts:56:74) at /home/runner/work/extension/extension/tests/specs/ledger/ledger.spec.ts:36:24
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/specs/send/send-inscription.spec.ts#L1
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Test timeout of 30000ms exceeded.
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/page-object-models/send.page.ts#L124
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('inscription-send-button').first() at page-object-models/send.page.ts:124 122 | } else { 123 | await inscriptions.nth(0).hover(); > 124 | await sendButton.nth(0).click({ force: true }); | ^ 125 | } 126 | } 127 | } at SendPage.selectInscription (/home/runner/work/extension/extension/tests/page-object-models/send.page.ts:124:31) at /home/runner/work/extension/extension/tests/specs/send/send-inscription.spec.ts:24:7
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/specs/send/send-inscription.spec.ts#L1
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Test timeout of 30000ms exceeded.
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/page-object-models/send.page.ts#L124
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('inscription-send-button').first() at page-object-models/send.page.ts:124 122 | } else { 123 | await inscriptions.nth(0).hover(); > 124 | await sendButton.nth(0).click({ force: true }); | ^ 125 | } 126 | } 127 | } at SendPage.selectInscription (/home/runner/work/extension/extension/tests/page-object-models/send.page.ts:124:31) at /home/runner/work/extension/extension/tests/specs/send/send-inscription.spec.ts:24:7
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/specs/send/send-inscription.spec.ts#L1
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Test timeout of 30000ms exceeded.
[chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step: tests/page-object-models/send.page.ts#L121
1) [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('inscription-send-button') at page-object-models/send.page.ts:121 119 | await this.page 120 | .getByTestId(SendCryptoAssetSelectors.InscriptionSendButton) > 121 | .click({ force: true }); | ^ 122 | } else { 123 | await inscriptions.nth(0).hover(); 124 | await sendButton.nth(0).click({ force: true }); at SendPage.selectInscription (/home/runner/work/extension/extension/tests/page-object-models/send.page.ts:121:10) at /home/runner/work/extension/extension/tests/specs/send/send-inscription.spec.ts:24:7
[chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error: tests/specs/send/send-inscription.spec.ts#L1
2) [chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error Test timeout of 30000ms exceeded.
[chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error: tests/page-object-models/send.page.ts#L124
2) [chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('inscription-send-button').first() at page-object-models/send.page.ts:124 122 | } else { 123 | await inscriptions.nth(0).hover(); > 124 | await sendButton.nth(0).click({ force: true }); | ^ 125 | } 126 | } 127 | } at SendPage.selectInscription (/home/runner/work/extension/extension/tests/page-object-models/send.page.ts:124:31) at /home/runner/work/extension/extension/tests/specs/send/send-inscription.spec.ts:44:7
[chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error: tests/specs/send/send-inscription.spec.ts#L1
2) [chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Test timeout of 30000ms exceeded.
[chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error: tests/page-object-models/send.page.ts#L124
2) [chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: locator.click: Target page, context or browser has been closed Call log: - waiting for getByTestId('inscription-send-button').first() at page-object-models/send.page.ts:124 122 | } else { 123 | await inscriptions.nth(0).hover(); > 124 | await sendButton.nth(0).click({ force: true }); | ^ 125 | } 126 | } 127 | } at SendPage.selectInscription (/home/runner/work/extension/extension/tests/page-object-models/send.page.ts:124:31) at /home/runner/work/extension/extension/tests/specs/send/send-inscription.spec.ts:44:7
Shard 5 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/rpc-open/open.spec.ts#L1
[chromium] › specs/rpc-open/open.spec.ts took 41.0s
Shard 10 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/transactions/transactions.spec.ts#L1
[chromium] › specs/transactions/transactions.spec.ts took 37.1s
Shard 3 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/onboarding/onboarding.spec.ts#L1
[chromium] › specs/onboarding/onboarding.spec.ts took 1.1m
Shard 9 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Shard 4 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/profile/profile.spec.ts#L1
[chromium] › specs/profile/profile.spec.ts took 32.0s
Shard 6 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/send/send-btc.spec.ts#L1
[chromium] › specs/send/send-btc.spec.ts took 1.0m
Slow Test: [chromium] › specs/rpc-sign-psbt/sign-psbt.spec.ts#L1
[chromium] › specs/rpc-sign-psbt/sign-psbt.spec.ts took 49.3s
Slow Test: [chromium] › specs/rpc-stacks-transaction/transaction-signing.spec.ts#L1
[chromium] › specs/rpc-stacks-transaction/transaction-signing.spec.ts took 22.4s
Shard 2 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/network/add-network.spec.ts#L1
[chromium] › specs/network/add-network.spec.ts took 1.9m
Slow Test: [chromium] › specs/message-signing/bip322-message-signing.spec.ts#L1
[chromium] › specs/message-signing/bip322-message-signing.spec.ts took 20.7s
Shard 1 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/compliance-checks/compliance-checks.spec.ts#L1
[chromium] › specs/compliance-checks/compliance-checks.spec.ts took 29.7s
Slow Test: [chromium] › specs/fund/fund.spec.ts#L1
[chromium] › specs/fund/fund.spec.ts took 19.2s
Shard 8 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Slow Test: [chromium] › specs/send/send-stx.spec.ts#L1
[chromium] › specs/send/send-stx.spec.ts took 3.3m
Shard 7 of 10
The following actions use a deprecated Node.js version and will be forced to run on node20: nick-fields/retry@v2, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Merge reports
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/download-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Deprecation notice: v1, v2, and v3 of the artifact actions
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "all-blob-reports". Please update your workflow to use v4 of the artifact actions. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
🎭 Playwright Run Summary
2 passed (45.4s)
🎭 Playwright Run Summary
1 skipped 3 passed (49.5s)
🎭 Playwright Run Summary
7 passed (1.2m)
🎭 Playwright Run Summary
1 flaky [chromium] › specs/settings/settings.spec.ts:14:3 › Settings menu › that menu item takes user to support page 5 passed (1.6m)
🎭 Playwright Run Summary
1 flaky [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise resolves with addresses successfully 11 passed (1.9m)
🎭 Playwright Run Summary
13 passed (2.3m)
🎭 Playwright Run Summary
11 passed (2.3m)
🎭 Playwright Run Summary
1 flaky [chromium] › specs/ledger/ledger.spec.ts:35:7 › App with Ledger › withBitcoinKeysOnly › receive modal opens 15 passed (2.2m)
🎭 Playwright Run Summary
16 passed (3.4m)
🎭 Playwright Run Summary
5 failed [chromium] › specs/send/send-inscription.spec.ts:22:5 › send inscription › valid send inscription data › should show the inscription review step [chromium] › specs/send/send-inscription.spec.ts:37:5 › send inscription › validation errors › should show the insufficient balance error [chromium] › specs/send/send-inscription.spec.ts:56:5 › send inscription › validation errors › should show invalid address error [chromium] › specs/send/send-inscription.spec.ts:70:5 › send inscription › validation errors › should show non-zero offset inscription error [chromium] › specs/send/send-inscription.spec.ts:92:3 › send inscription › should show multiple inscription on utxo error

Artifacts

Produced during runtime
Name Size
all-blob-reports Expired
17.8 MB