chore(deps): bump elliptic from 6.5.7 to 6.6.1 #7165
Annotations
10 errors, 2 warnings, and 1 notice
Run Playwright tests:
tests/page-object-models/onboarding.page.ts#L273
1) [chromium] › specs/receive/receive.spec.ts:10:3 › Receive Dialog › That the Receive dialog renders and shows the correct assets
Error: No key found
at page-object-models/onboarding.page.ts:273
271 | async enterMnemonicKey(secretKey: string) {
272 | // NOTE: TEST_ACCOUNT_SECRET_KEY needs to be obtained and set in .env
> 273 | if (!secretKey) throw new Error('No key found');
| ^
274 | const key = secretKey.split(' ');
275 | for (let i = 0; i < key.length; i++) {
276 | await this.page.getByTestId(`mnemonic-input-${i + 1}`).fill(key[i]);
at OnboardingPage.enterMnemonicKey (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:273:27)
at OnboardingPage.signInExistingUser (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:260:16)
at /home/runner/work/extension/extension/tests/specs/receive/receive.spec.ts:6:5
|
Run Playwright tests:
tests/page-object-models/onboarding.page.ts#L273
1) [chromium] › specs/receive/receive.spec.ts:10:3 › Receive Dialog › That the Receive dialog renders and shows the correct assets
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: No key found
at page-object-models/onboarding.page.ts:273
271 | async enterMnemonicKey(secretKey: string) {
272 | // NOTE: TEST_ACCOUNT_SECRET_KEY needs to be obtained and set in .env
> 273 | if (!secretKey) throw new Error('No key found');
| ^
274 | const key = secretKey.split(' ');
275 | for (let i = 0; i < key.length; i++) {
276 | await this.page.getByTestId(`mnemonic-input-${i + 1}`).fill(key[i]);
at OnboardingPage.enterMnemonicKey (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:273:27)
at OnboardingPage.signInExistingUser (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:260:16)
at /home/runner/work/extension/extension/tests/specs/receive/receive.spec.ts:6:5
|
Run Playwright tests:
tests/page-object-models/onboarding.page.ts#L273
1) [chromium] › specs/receive/receive.spec.ts:10:3 › Receive Dialog › That the Receive dialog renders and shows the correct assets
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: No key found
at page-object-models/onboarding.page.ts:273
271 | async enterMnemonicKey(secretKey: string) {
272 | // NOTE: TEST_ACCOUNT_SECRET_KEY needs to be obtained and set in .env
> 273 | if (!secretKey) throw new Error('No key found');
| ^
274 | const key = secretKey.split(' ');
275 | for (let i = 0; i < key.length; i++) {
276 | await this.page.getByTestId(`mnemonic-input-${i + 1}`).fill(key[i]);
at OnboardingPage.enterMnemonicKey (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:273:27)
at OnboardingPage.signInExistingUser (/home/runner/work/extension/extension/tests/page-object-models/onboarding.page.ts:260:16)
at /home/runner/work/extension/extension/tests/specs/receive/receive.spec.ts:6:5
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L1
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Test timeout of 30000ms exceeded.
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L104
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Error: page.goto: Target page, context or browser has been closed
Call log:
- navigating to "localhost:3000", waiting until "load"
102 |
103 | test('the promise resolves with addresses successfully', async ({ page, context }) => {
> 104 | await page.goto('localhost:3000');
| ^
105 | const getAddressesPromise = initiateGetAddresses(page);
106 |
107 | const popup = await interceptRequestPopup(context);
at /home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:104:20
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L71
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByTestId('get-addresses-approve-button')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByTestId('get-addresses-approve-button')
69 | async function clickConnectLeatherButton(popup: Page) {
70 | const button = popup.getByTestId('get-addresses-approve-button');
> 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
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L66
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
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
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L1
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L104
2) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: page.goto: Target page, context or browser has been closed
Call log:
- navigating to "localhost:3000", waiting until "load"
102 |
103 | test('the promise resolves with addresses successfully', async ({ page, context }) => {
> 104 | await page.goto('localhost:3000');
| ^
105 | const getAddressesPromise = initiateGetAddresses(page);
106 |
107 | const popup = await interceptRequestPopup(context);
at /home/runner/work/extension/extension/tests/specs/rpc-get-addresses/get-addresses.spec.ts:104:20
|
Run Playwright tests:
tests/specs/rpc-get-addresses/get-addresses.spec.ts#L1
3) [chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:117:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise rejects when user closes popup window
Test timeout of 30000ms exceeded.
|
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
|
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/
|
Run Playwright tests
2 failed
[chromium] › specs/receive/receive.spec.ts:10:3 › Receive Dialog › That the Receive dialog renders and shows the correct assets
[chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:103:7 › Rpc: GetAddresses › ledgerWithBitcoinAndStacksKey › the promise resolves with addresses successfully
1 flaky
[chromium] › specs/rpc-get-addresses/get-addresses.spec.ts:117:7 › Rpc: GetAddresses › ledgerWithStacksKeysOnly › the promise rejects when user closes popup window
8 passed (3.1m)
|
Loading