chore: allow running on node 22 #24226
prbot.yml
on: pull_request
Matrix: Run e2e tests on Atomic
Check with linter
3m 33s
Run unit tests
2m 25s
Run e2e screenshots tests on Atomic
3m 50s
Run e2e tests on Atomic React
1m 48s
Run e2e tests on Atomic React NextJS
1m 32s
Run e2e tests for IIFE
2s
Run e2e tests on Atomic Angular
1m 35s
Run e2e tests on Vue.js sample
47s
Run e2e tests on Stencil.js sample
1m 22s
Run e2e tests for Atomic Hosted Page
1m 49s
Run e2e tests on Atomic insight panel
3m 47s
Run e2e tests on Headless SSR App router sample in dev mode
2m 16s
Run e2e tests on Headless SSR App router sample in prod mode
1m 40s
Run e2e tests on Headless SSR Pages router sample in dev mode
2m 9s
Run e2e tests on Headless SSR Pages router sample in prod mode
1m 54s
Verify compatibility of packages
49s
CDN Checks
4m 0s
Run Quantic E2E tests
/
Setup e2e tests on Quantic
4m 12s
Matrix: Run Playwright tests for Atomic
Matrix: Run Quantic E2E tests / Run e2e tests on Quantic
Merge Playwright reports
1m 13s
Confirm build is valid
0s
Annotations
9 errors, 81 warnings, and 2 notices
Report bundle size
Process completed with exit code 1.
|
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:65:5 › atomic-product-description › should render description for ec_shortdesc field:
packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts#L71
1) [chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:65:5 › atomic-product-description › should render description for ec_shortdesc field
Error: expect(locator).toBeVisible()
Locator: locator('.expandable-text').first()
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for locator('.expandable-text').first()
69 | await productDescription.hydrated.first().waitFor();
70 |
> 71 | expect(productDescription.textContent.first()).toBeVisible();
| ^
72 | });
73 | });
74 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:71:54
|
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 2 › should truncate description after 2 lines:
packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts#L97
2) [chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 2 › should truncate description after 2 lines
Error: expect(locator).toHaveClass(expected)
Locator: locator('.expandable-text').first()
Expected pattern: /line-clamp-2/
Received string: ""
Call log:
- expect.toHaveClass with timeout 7000ms
- waiting for locator('.expandable-text').first()
95 |
96 | const descriptionText = productDescription.textContent.first();
> 97 | expect(descriptionText).toHaveClass(expectedClass);
| ^
98 | });
99 |
100 | test('should show "Show More" button', async ({productDescription}) => {
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:97:35
|
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 4 › should truncate description after 4 lines:
packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts#L97
3) [chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 4 › should truncate description after 4 lines
Error: expect(locator).toHaveClass(expected)
Locator: locator('.expandable-text').first()
Expected pattern: /line-clamp-4/
Received string: ""
Call log:
- expect.toHaveClass with timeout 7000ms
- waiting for locator('.expandable-text').first()
95 |
96 | const descriptionText = productDescription.textContent.first();
> 97 | expect(descriptionText).toHaveClass(expectedClass);
| ^
98 | });
99 |
100 | test('should show "Show More" button', async ({productDescription}) => {
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:97:35
|
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:72:5 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L1
4) [chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:72:5 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Test timeout of 30000ms exceeded.
|
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:72:5 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button:
packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L75
4) [chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:72:5 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('atomic-search-box').getByLabel('Clear recent searches.')
73 | searchBox,
74 | }) => {
> 75 | await searchBox.clearRecentQueriesButton.click();
| ^
76 | await expect(searchBox.recentQueries().first()).not.toBeVisible();
77 | });
78 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:75:48
|
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:79:5 › with instant results & query suggestions › with recent queries › should clear recent queries when pressing enter while the clear button is focused:
packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L1
5) [chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:79:5 › with instant results & query suggestions › with recent queries › should clear recent queries when pressing enter while the clear button is focused
Test timeout of 30000ms exceeded.
|
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:79:5 › with instant results & query suggestions › with recent queries › should clear recent queries when pressing enter while the clear button is focused:
packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L82
5) [chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:79:5 › with instant results & query suggestions › with recent queries › should clear recent queries when pressing enter while the clear button is focused
Error: locator.hover: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('atomic-search-box').getByLabel('Clear recent searches.')
80 | searchBox,
81 | }) => {
> 82 | await searchBox.clearRecentQueriesButton.hover();
| ^
83 | await searchBox.searchInput.press('Enter');
84 | await expect(searchBox.recentQueries().first()).not.toBeVisible();
85 | });
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:82:48
|
[chromium] › components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts:266:9 › AtomicTabManager › when viewport is too small to display all buttons › when selecting a dropdown option › should change other component visibility › facets:
packages/atomic/src/components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts#L272
6) [chromium] › components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts:266:9 › AtomicTabManager › when viewport is too small to display all buttons › when selecting a dropdown option › should change other component visibility › facets
Error: Timed out 7000ms waiting for expect(locator).toBeVisible()
Locator: locator('atomic-refine-modal').getByLabel(/^included-facet$/).first()
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for locator('atomic-refine-modal').getByLabel(/^included-facet$/).first()
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)" results-must-match="atLeastOneValue"></atomic-facet>
- unexpected value "hidden"
- locator resolved to <atomic-facet with-search="" is-collapsed="" field="filetype" heading-level="0" is-refine-modal="" facet-id="filetype" number-of-values="8" filter-facet-count="" data-atomic-loaded="true" sort-criteria="automatic" aria-label="included-facet" tabs-included="["article"]" data-atomic-rendered="true" display-values-as="checkbox" class="atomic-hidden hydrated" label="File type (included facet)
|
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 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 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 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 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/
|
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 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 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/
|
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 36.6s
|
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 (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 (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 (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 (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 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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 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 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 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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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)
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)
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 (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 (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 (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 (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 (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)
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/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 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 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/
|
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 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/
|
Slow Test:
packages/atomic/[chromium] › components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts took 1.2m
|
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 1.1m
|
Slow Test:
packages/atomic/[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts took 54.3s
|
Slow Test:
packages/atomic/[chromium] › components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts#L1
packages/atomic/[chromium] › components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts took 34.1s
|
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 32.4s
|
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
22 passed (40.0s)
|
🎭 Playwright Run Summary
6 flaky
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:65:5 › atomic-product-description › should render description for ec_shortdesc field
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 2 › should truncate description after 2 lines
[chromium] › components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts:88:9 › atomic-product-description › when description is truncated › when truncateAfter is set to 4 › should truncate description after 4 lines
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:72:5 › with instant results & query suggestions › with recent queries › should clear recent queries when clicking the clear button
[chromium] › components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts:79:5 › with instant results & query suggestions › with recent queries › should clear recent queries when pressing enter while the clear button is focused
[chromium] › components/search/tabs/atomic-tab-manager/e2e/atomic-tab-manager.e2e.ts:266:9 › AtomicTabManager › when viewport is too small to display all buttons › when selecting a dropdown option › should change other component visibility › facets
522 passed (13.3m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
atomic-hosted-page-playwright-report
Expired
|
184 KB |
|
atomic-playwright-report
Expired
|
3.82 MB |
|
blob-report-1
Expired
|
3.62 MB |
|
result-lists-screenshots
|
15.4 MB |
|