fix(atomic): use getter instead of fn #22856
prbot.yml
on: pull_request
Build
7m 23s
Report bundle size
5m 21s
Matrix: Run Playwright tests for Atomic
Matrix: Run e2e tests on Atomic
Check with linter
11m 38s
Run unit tests
10m 40s
Run e2e screenshots tests on Atomic
9m 59s
Run e2e tests on Atomic React
9m 22s
Run e2e tests on Atomic React NextJS
9m 42s
Run e2e tests for IIFE
8m 51s
Run e2e tests on Atomic Angular
9m 24s
Run e2e tests on Vue.js sample
8m 48s
Run e2e tests on Stencil.js sample
9m 21s
Run e2e tests for Atomic Hosted Page
9m 45s
Run e2e tests on Atomic insight panel
9m 17s
Run e2e tests on Headless SSR App router sample in dev mode
10m 27s
Run e2e tests on Headless SSR App router sample in prod mode
10m 7s
Run e2e tests on Headless SSR Pages router sample in dev mode
10m 13s
Run e2e tests on Headless SSR Pages router sample in prod mode
9m 59s
Merge Playwright reports
1m 8s
Run Quantic E2E tests
/
Setup e2e tests on Quantic
4m 56s
Matrix: Run Quantic E2E tests / Run e2e tests on Quantic
Confirm build is valid
0s
Annotations
14 errors, 484 warnings, and 24 notices
[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page:
packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L157
1) [chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page
TypeError: Cannot set properties of undefined (setting 'totalPages')
155 | const response = await route.fetch();
156 | const body = await response.json();
> 157 | body['pagination']['totalPages'] = 2;
| ^
158 | body['pagination']['page'] = 1;
159 | await route.fulfill({
160 | response,
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:157:41
|
[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page:
packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L164
1) [chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page
Error: expect(locator).toBeDisabled()
Locator: getByLabel('Next')
Expected: disabled
Received: <element(s) not found>
Call log:
- expect.toBeDisabled with timeout 7000ms
- waiting for getByLabel('Next')
162 | });
163 | });
> 164 | await expect(pager.nextButton).toBeDisabled();
| ^
165 | });
166 | });
167 | });
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:164:38
|
[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page:
packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L157
1) [chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
TypeError: Cannot set properties of undefined (setting 'totalPages')
155 | const response = await route.fetch();
156 | const body = await response.json();
> 157 | body['pagination']['totalPages'] = 2;
| ^
158 | body['pagination']['page'] = 1;
159 | await route.fulfill({
160 | response,
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:157:41
|
[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page:
packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L164
1) [chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeDisabled()
Locator: getByLabel('Next')
Expected: disabled
Received: <element(s) not found>
Call log:
- expect.toBeDisabled with timeout 7000ms
- waiting for getByLabel('Next')
162 | });
163 | });
> 164 | await expect(pager.nextButton).toBeDisabled();
| ^
165 | });
166 | });
167 | });
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:164:38
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:70:7 › when a query yield a single product › should display message:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L56
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:70:7 › when a query yield a single product › should display message
TypeError: Cannot read properties of undefined (reading '0')
54 | const response = await route.fetch();
55 | const body = await response.json();
> 56 | body.products = [body.products[0]];
| ^
57 | body.pagination.totalEntries = 1;
58 | body.pagination.totalPages = 1;
59 | await route.fulfill({
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:56:37
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:70:7 › when a query yield a single product › should display message:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L72
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:70:7 › when a query yield a single product › should display message
Error: expect(locator).toBeVisible()
Locator: locator(':not([role="status"])').filter({ hasText: /^Product 1 of 1 for kayak$/ })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for locator(':not([role="status"])').filter({ hasText: /^Product 1 of 1 for kayak$/ })
70 | test('should display message', async ({querySummary}) => {
71 | const textRegex = /^Product 1 of 1 for kayak$/;
> 72 | await expect(querySummary.text(textRegex)).toBeVisible();
| ^
73 | });
74 |
75 | test('screen readers should read out', async ({querySummary}) => {
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:72:48
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L56
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out
TypeError: Cannot read properties of undefined (reading '0')
54 | const response = await route.fetch();
55 | const body = await response.json();
> 56 | body.products = [body.products[0]];
| ^
57 | body.pagination.totalEntries = 1;
58 | body.pagination.totalPages = 1;
59 | await route.fulfill({
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:56:37
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L77
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out
Error: expect(locator).toBeVisible()
Locator: getByRole('status').filter({ hasText: /^Product 1 of 1 for kayak$/ })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for getByRole('status').filter({ hasText: /^Product 1 of 1 for kayak$/ })
75 | test('screen readers should read out', async ({querySummary}) => {
76 | const textRegex = /^Product 1 of 1 for kayak$/;
> 77 | await expect(querySummary.ariaLive(textRegex)).toBeVisible();
| ^
78 | });
79 | });
80 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:77:52
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L56
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
TypeError: Cannot read properties of undefined (reading '0')
54 | const response = await route.fetch();
55 | const body = await response.json();
> 56 | body.products = [body.products[0]];
| ^
57 | body.pagination.totalEntries = 1;
58 | body.pagination.totalPages = 1;
59 | await route.fulfill({
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:56:37
|
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out:
packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts#L77
1) [chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible()
Locator: getByRole('status').filter({ hasText: /^Product 1 of 1 for kayak$/ })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for getByRole('status').filter({ hasText: /^Product 1 of 1 for kayak$/ })
75 | test('screen readers should read out', async ({querySummary}) => {
76 | const textRegex = /^Product 1 of 1 for kayak$/;
> 77 | await expect(querySummary.ariaLive(textRegex)).toBeVisible();
| ^
78 | });
79 | });
80 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:77:52
|
[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L206
1) [chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Test timeout of 30000ms exceeded while running "beforeEach" hook.
204 |
205 | test.describe('with recent queries', () => {
> 206 | test.beforeEach(async ({searchBox, page}) => {
| ^
207 | await searchBox.searchInput.waitFor({state: 'visible'});
208 | await searchBox.searchInput.click();
209 | await searchBox.searchInput.fill('kayak');
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:206:10
|
[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L213
1) [chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Error: page.waitForLoadState: Test timeout of 30000ms exceeded.
211 | await searchBox.clearButton.waitFor({state: 'visible'});
212 | await searchBox.searchInput.fill('');
> 213 | await page.waitForLoadState('networkidle');
| ^
214 | });
215 |
216 | test('should display recent queries', async ({searchBox}) => {
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:213:18
|
[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L1
1) [chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L223
1) [chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('atomic-commerce-search-box').getByLabel('Clear recent searches.')
221 | searchBox,
222 | }) => {
> 223 | await searchBox.clearRecentQueriesButton.click();
| ^
224 | await expect(searchBox.recentQueries().first()).not.toBeVisible();
225 | });
226 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:223:48
|
Build
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic CSP
Failed to restore: Cache service responded with 429
|
Run unit tests
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic CSP
Failed to restore: Cache service responded with 429
|
Run unit tests
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic CSP
Failed to restore: Cache service responded with 429
|
Run unit tests
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic CSP
Failed to restore: Cache service responded with 429
|
Run unit tests
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React NextJS
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React NextJS
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React NextJS
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React NextJS
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React NextJS
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e screenshots tests on Atomic
Failed to restore: Cache service responded with 429
|
Run e2e screenshots tests on Atomic
Failed to restore: Cache service responded with 429
|
Run e2e screenshots tests on Atomic
Failed to restore: Cache service responded with 429
|
Run e2e screenshots tests on Atomic
Failed to restore: Cache service responded with 429
|
Run e2e screenshots tests on Atomic
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5, actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic React
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic React
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Check with linter
Failed to restore: Cache service responded with 429
|
Check with linter
Failed to restore: Cache service responded with 429
|
Check with linter
Failed to restore: Cache service responded with 429
|
Check with linter
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic Angular
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic Angular
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic Angular
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic Angular
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic Angular
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Vue.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Vue.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Vue.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Vue.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Stencil.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Stencil.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Stencil.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Stencil.js sample
Failed to restore: Cache service responded with 429
|
Run e2e tests on Stencil.js sample
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic insight panel
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic insight panel
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic insight panel
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic insight panel
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic insight panel
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Headless SSR App router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR App router sample in dev mode
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Headless SSR App router sample in prod mode
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Headless SSR Pages router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in dev mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in dev mode
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Headless SSR Pages router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in prod mode
Failed to restore: Cache service responded with 429
|
Run e2e tests on Headless SSR Pages router sample in prod mode
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests for IIFE
Failed to restore: Cache service responded with 429
|
Run e2e tests for IIFE
Failed to restore: Cache service responded with 429
|
Run e2e tests for IIFE
Failed to restore: Cache service responded with 429
|
Run e2e tests for IIFE
Failed to restore: Cache service responded with 429
|
Run e2e tests for IIFE
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests for Atomic Hosted Page
Failed to restore: Cache service responded with 429
|
Run e2e tests for Atomic Hosted Page
Failed to restore: Cache service responded with 429
|
Run e2e tests for Atomic Hosted Page
Failed to restore: Cache service responded with 429
|
Run e2e tests for Atomic Hosted Page
Failed to restore: Cache service responded with 429
|
Should test Quantic?
Failed to restore: Cache service responded with 429
|
Should test Quantic?
Failed to restore: Cache service responded with 429
|
Should test Quantic?
Failed to restore: Cache service responded with 429
|
Should test Quantic?
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (1, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (1, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (1, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (1, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts took 25.2s
|
Run Playwright tests for Atomic (3, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (3, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (3, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (3, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (2, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (2, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (2, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (2, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts took 43.7s
|
Run Playwright tests for Atomic (4, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (4, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (4, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (4, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (6, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (6, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (6, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (6, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (5, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (5, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (5, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (5, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts took 19.2s
|
Run Playwright tests for Atomic (8, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (8, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (7, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (8, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (7, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (8, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (7, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (7, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (9, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (9, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (11, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (9, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (11, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (9, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (11, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (11, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (14, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (14, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (14, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (14, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/commerce/facets/atomic-commerce-facet/e2e/atomic-commerce-facet.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/facets/atomic-commerce-facet/e2e/atomic-commerce-facet.e2e.ts took 18.1s
|
Run Playwright tests for Atomic (16, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (16, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (16, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (16, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (10, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (10, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (10, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (10, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (15, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (15, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (15, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (15, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (13, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (13, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (13, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (13, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (17, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (17, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (17, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (17, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L1
packages/atomic/[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts took 15.9s
|
Run Playwright tests for Atomic (19, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (19, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (19, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (19, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (21, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (21, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (21, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (21, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (20, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (20, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (20, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (20, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/search/facets/atomic-timeframe-facet/e2e/atomic-timeframe-facet.e2e.ts#L1
packages/atomic/[chromium] › components/search/facets/atomic-timeframe-facet/e2e/atomic-timeframe-facet.e2e.ts took 21.3s
|
Run Playwright tests for Atomic (23, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (23, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (23, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (23, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (18, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (18, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (18, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (18, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (22, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (22, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (22, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (22, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (24, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (24, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (24, 24)
Failed to restore: Cache service responded with 429
|
Run Playwright tests for Atomic (24, 24)
Failed to restore: Cache service responded with 429
|
Slow Test:
packages/atomic/[chromium] › components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts#L1
packages/atomic/[chromium] › components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts took 23.7s
|
Run e2e tests on Atomic (2)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (2)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (2)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (2)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (2)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (3)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (3)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (3)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (3)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (3)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (1)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (1)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (1)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (1)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (1)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (5)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (5)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (5)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (5)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (5)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (4)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (4)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (4)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (4)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (4)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (6)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (6)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (6)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (6)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (6)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (7)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (8)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (7)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (8)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (7)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (7)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (8)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (8)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (7)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (8)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (10)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (10)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (10)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (10)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (10)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (9)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (9)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (9)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (9)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (9)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (13)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (13)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (13)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (13)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (13)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (12)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (12)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (12)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (12)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (12)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (11)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (11)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (11)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (11)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (11)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (15)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (15)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (15)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (15)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (15)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (14)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (14)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (14)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (14)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (14)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (16)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (16)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (16)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (16)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (16)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (17)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (17)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (17)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (17)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (17)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (18)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (18)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (18)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (18)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (18)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (20)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (20)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (20)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (20)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (20)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (21)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (21)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (21)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (21)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (21)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (19)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (19)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (19)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (19)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (19)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (25)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (25)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (25)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (25)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (25)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (22)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (22)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (22)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (22)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (22)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (26)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (26)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (26)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (26)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (26)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (23)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (23)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (23)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (23)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (23)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (24)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (24)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (24)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (24)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (24)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (27)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (27)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (27)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (27)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (27)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (28)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (28)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (28)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (28)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (28)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (31)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (31)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (31)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (31)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (31)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (30)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (30)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (30)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (30)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (30)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (33)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (33)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (33)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (33)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (33)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (29)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (29)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (29)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (29)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (29)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (32)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (32)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (32)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (32)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (32)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (35)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (35)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (35)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (35)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (35)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (37)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (37)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (37)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (37)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (37)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (38)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (38)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (38)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (38)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (38)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (34)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (36)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (34)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (36)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (34)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (36)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (34)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (36)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (34)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (36)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (41)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (41)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (41)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (41)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (41)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (39)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (39)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (39)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (39)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (39)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (43)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (43)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (43)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (43)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (43)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (40)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (40)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (40)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (40)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (40)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (45)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (45)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (45)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (45)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (45)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (42)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (42)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (42)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (42)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (42)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (46)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (46)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (46)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (46)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (46)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (48)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (48)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (48)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (48)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (48)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (47)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (47)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (47)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (47)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (47)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (44)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (44)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (44)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (44)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (44)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (49)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (51)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (51)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (49)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (51)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (49)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (51)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (49)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (51)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (49)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (50)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (50)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (50)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (50)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (50)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (52)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (52)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (52)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (53)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (52)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (53)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (52)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (53)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (53)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (53)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (54)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (54)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (54)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (54)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (54)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (56)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (56)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (55)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (56)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (55)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (56)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (55)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (56)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (55)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (55)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (57)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (57)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (57)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (57)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (57)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (58)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (58)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (58)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (58)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (58)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (60)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (60)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (60)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (60)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (60)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run e2e tests on Atomic (59)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (59)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (59)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (59)
Failed to restore: Cache service responded with 429
|
Run e2e tests on Atomic (59)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run Quantic E2E tests / Run e2e tests on Quantic (cypress/e2e/facets-1/**/*)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run Quantic E2E tests / Run e2e tests on Quantic (cypress/e2e/default-2/**/*)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run Quantic E2E tests / Run e2e tests on Quantic (cypress/e2e/facets-2/**/*)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run Quantic E2E tests / Run e2e tests on Quantic (cypress/e2e/default-1/**/*)
The following actions use a deprecated Node.js version and will be forced to run on node20: cypress-io/github-action@v5. 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: "result-lists-screenshots".
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
13 passed (28.0s)
|
🎭 Playwright Run Summary
13 passed (26.2s)
|
🎭 Playwright Run Summary
13 passed (46.5s)
|
🎭 Playwright Run Summary
13 passed (26.3s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts:150:9 › Default › with 2 pages of products › it should disable next button when reaching last page
12 passed (24.5s)
|
🎭 Playwright Run Summary
13 passed (23.8s)
|
🎭 Playwright Run Summary
13 passed (23.2s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:70:7 › when a query yield a single product › should display message
12 passed (19.4s)
|
🎭 Playwright Run Summary
13 passed (14.6s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › components/commerce/atomic-commerce-query-summary/e2e/atomic-commerce-query-summary.e2e.ts:75:7 › when a query yield a single product › screen readers should read out
12 passed (18.4s)
|
🎭 Playwright Run Summary
13 passed (28.2s)
|
🎭 Playwright Run Summary
13 passed (15.2s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts:220:9 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
12 passed (1.4m)
|
🎭 Playwright Run Summary
13 passed (24.2s)
|
🎭 Playwright Run Summary
13 passed (27.8s)
|
🎭 Playwright Run Summary
13 passed (18.8s)
|
🎭 Playwright Run Summary
12 passed (16.1s)
|
🎭 Playwright Run Summary
12 passed (25.4s)
|
🎭 Playwright Run Summary
12 passed (25.8s)
|
🎭 Playwright Run Summary
1 skipped
11 passed (20.0s)
|
🎭 Playwright Run Summary
13 passed (12.5s)
|
🎭 Playwright Run Summary
1 skipped
11 passed (22.3s)
|
🎭 Playwright Run Summary
12 passed (26.5s)
|
🎭 Playwright Run Summary
13 passed (16.7s)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
atomic-playwright-report
Expired
|
3.76 MB |
|
blob-report-12
Expired
|
12.5 KB |
|
result-lists-screenshots
Expired
|
22.7 MB |
|