chore(devdeps): update swc monorepo #2745
Annotations
10 errors, 2 warnings, and 10 notices
|
src/otp-register.test.ts:12:1 › Test happy paths on test page:
src/otp-register.test.ts#L29
1) src/otp-register.test.ts:12:1 › Test happy paths on test page ─────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByText('Scan the QR code')
Expected: visible
Timeout: 5000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 5000ms
- waiting for getByText('Scan the QR code')
Call Log:
- Test timeout of 30000ms exceeded
27 | await clickButton('Submit', '/authenticate');
28 |
> 29 | await expect(() => expect(page.getByText('Scan the QR code')).toBeVisible()).toPass();
| ^
30 |
31 | // Test assertions
32 | expect(
at /home/workflows/workspace/e2e/journey-suites/src/otp-register.test.ts:29:80
|
|
src/registration.test.ts:12:1 › Test happy paths on test page:
src/registration.test.ts#L29
1) src/registration.test.ts:12:1 › Test happy paths on test page ─────────────────────────────────
Error: locator.fill: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByLabel('Username')
27 |
28 | // Perform registration
> 29 | await page.getByLabel('Username').fill('testuser+' + id);
| ^
30 |
31 | // Select email and fill with "testuser+<id>@example.com"
32 | await page.getByLabel('Email Address').fill('testuser+' + id + '@example.com');
at /home/workflows/workspace/e2e/journey-suites/src/registration.test.ts:29:37
|
|
src/registration.test.ts:12:1 › Test happy paths on test page:
src/registration.test.ts#L0
1) src/registration.test.ts:12:1 › Test happy paths on test page ─────────────────────────────────
Test timeout of 30000ms exceeded.
|
|
src/choice-confirm-poll.test.ts:12:1 › Test happy paths on test page:
src/choice-confirm-poll.test.ts#L37
1) src/choice-confirm-poll.test.ts:12:1 › Test happy paths on test page ──────────────────────────
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByLabel('Yes')
35 | // Message Node: Are you human?
36 | await page.getByText('Are you human?').isVisible();
> 37 | await page.getByLabel('Yes').click();
| ^
38 | await clickButton('Submit', '/authenticate');
39 |
40 | // Choice Collector: Are you sure?
at /home/workflows/workspace/e2e/journey-suites/src/choice-confirm-poll.test.ts:37:32
|
|
src/choice-confirm-poll.test.ts:12:1 › Test happy paths on test page:
src/choice-confirm-poll.test.ts#L0
1) src/choice-confirm-poll.test.ts:12:1 › Test happy paths on test page ──────────────────────────
Test timeout of 30000ms exceeded.
|
|
src/protect-native.test.ts:18:3 › Test basic login flow with Ping Protect › should send Protect data and login successfully:
src/protect-native.test.ts#L37
1) src/protect-native.test.ts:18:3 › Test basic login flow with Ping Protect › should send Protect data and login successfully
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
=========================== logs ===========================
waiting for request "https://openam-sdks.forgeblocks.com/am/oauth2/alp…"
============================================================
35 | await expect(page.getByText('Protect evaluating')).toBeVisible();
36 |
> 37 | await page.waitForRequest('https://openam-sdks.forgeblocks.com/am/oauth2/alpha/userinfo');
| ^
38 | await expect(page.getByText('Your user information:')).toBeVisible();
39 | await expect(page.getByText('sdkuser@example.com')).toBeVisible();
40 |
at /home/workflows/workspace/e2e/protect-suites/src/protect-native.test.ts:37:16
|
|
src/protect-native.test.ts:18:3 › Test basic login flow with Ping Protect › should send Protect data and login successfully:
src/protect-native.test.ts#L0
1) src/protect-native.test.ts:18:3 › Test basic login flow with Ping Protect › should send Protect data and login successfully
Test timeout of 30000ms exceeded.
|
|
src/logout.spec.ts:19:7 › Logout tests › PingAM login then logout:
src/utils/async-events.ts#L13
1) src/logout.spec.ts:19:7 › Logout tests › PingAM login then logout ─────────────────────────────
Error: page.waitForResponse: Test timeout of 30000ms exceeded.
at utils/async-events.ts:13
11 | throw new Error('Must provide endpoint argument, type string, e.g. "/authenticate"');
12 | await Promise.all([
> 13 | page.waitForResponse((response) => {
| ^
14 | return response.url().includes(endpoint);
15 | }),
16 | page.getByRole('button', { name: text }).click(),
at clickButton (/home/workflows/workspace/e2e/oidc-suites/src/utils/async-events.ts:13:14)
at /home/workflows/workspace/e2e/oidc-suites/src/logout.spec.ts:46:11
|
|
src/logout.spec.ts:19:7 › Logout tests › PingAM login then logout:
src/logout.spec.ts#L0
1) src/logout.spec.ts:19:7 › Logout tests › PingAM login then logout ─────────────────────────────
Test timeout of 30000ms exceeded.
|
|
src/user.spec.ts:19:7 › User tests › get user info from PingAM:
src/user.spec.ts#L32
1) src/user.spec.ts:19:7 › User tests › get user info from PingAM ────────────────────────────────
Error: expect(locator).not.toBeEmpty() failed
Locator: locator('#accessToken-0')
Expected: not empty
Timeout: 5000ms
Error: element(s) not found
Call log:
- Expect "not toBeEmpty" with timeout 5000ms
- waiting for locator('#accessToken-0')
30 | expect(page.url()).toContain('state');
31 |
> 32 | await expect(page.locator('#accessToken-0')).not.toBeEmpty();
| ^
33 |
34 | await clickButton('User Info', '/userinfo');
35 |
at /home/workflows/workspace/e2e/oidc-suites/src/user.spec.ts:32:54
|
|
pr
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v5, nrwl/nx-set-shas@v4, pnpm/action-setup@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
pr
No files were found with the provided path: ./e2e/*/.playwright/**
./e2e/**/.playwright/**. No artifacts will be uploaded.
|
|
🎭 Playwright Run Summary
1 passed (15.9s)
|
|
🎭 Playwright Run Summary
1 passed (17.6s)
|
|
🎭 Playwright Run Summary
2 passed (24.1s)
|
|
🎭 Playwright Run Summary
3 passed (18.1s)
|
|
🎭 Playwright Run Summary
2 passed (14.2s)
|
|
🎭 Playwright Run Summary
1 failed
src/user.spec.ts:19:7 › User tests › get user info from PingAM ─────────────────────────────────
2 passed (39.7s)
|
|
🎭 Playwright Run Summary
2 passed (12.8s)
|
|
🎭 Playwright Run Summary
2 passed (13.7s)
|
|
🎭 Playwright Run Summary
1 passed (11.7s)
|
|
🎭 Playwright Run Summary
1 passed (10.0s)
|