chore(atomic): migrate to Tailwind V4 #26638
prbot.yml
on: pull_request
Matrix: Run e2e tests on Atomic
Check with linter
4m 12s
Run unit tests
4m 0s
Run e2e screenshots tests on Atomic
2m 20s
Run e2e tests on Atomic React
2m 15s
Run e2e tests on Atomic React NextJS
1m 51s
Run e2e tests for IIFE
12s
Run e2e tests on Atomic Angular
2m 37s
Run e2e tests on Vue.js sample
1m 11s
Run e2e tests on Stencil.js sample
1m 56s
Run e2e tests for Atomic Hosted Page
2m 56s
Run e2e tests for Headless Commerce SSR
2m 17s
Run e2e tests on Atomic insight panel
1m 50s
Run e2e tests on Headless SSR App router sample in dev mode
2m 42s
Run e2e tests on Headless SSR App router sample in prod mode
2m 29s
Run e2e tests on Headless SSR Pages router sample in dev mode
2m 47s
Run e2e tests on Headless SSR Pages router sample in prod mode
2m 10s
Verify compatibility of packages
1m 12s
Build typedoc
1m 58s
CDN Checks
4m 23s
Run Quantic E2E tests
/
Setup e2e tests on Quantic
7m 48s
Matrix: Run Playwright tests for Atomic
Matrix: Run Quantic E2E tests / Run Cypress e2e tests on Quantic
Run Quantic E2E tests
/
Run Playwright e2e tests on Quantic
1m 12s
Merge Playwright reports
2m 8s
Confirm build is valid
8s
Annotations
16 errors, 32 warnings, and 25 notices
Run e2e tests on Atomic (13)
The process '/opt/hostedtoolcache/node/22.13.1/x64/bin/npx' failed with exit code 1
|
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:22:3 › with an automatic query correction › should display the auto corrected:
packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts#L26
1) [chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:22:3 › with an automatic query correction › should display the auto corrected
Error: expect.toBeVisible: Error: strict mode violation: getByText('coveo', { exact: true }) resolved to 2 elements:
1) <span part="recent-query-text" class="line-clamp-2 break-all">…</span> aka getByRole('button', { name: '“coveo”, recent query. 2 of' })
2) <b part="highlight">coveo</b> aka locator('#code-root').getByText('coveo', { exact: true })
Call log:
- expect.toBeVisible with timeout 7000ms
- waiting for getByText('coveo', { exact: true })
24 | page.getByText('Query was automatically corrected to')
25 | ).toBeVisible();
> 26 | await expect(page.getByText(CORRECTED_QUERY, {exact: true})).toBeVisible();
| ^
27 | });
28 | });
29 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:26:66
|
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:39:3 › with a manual query correction › search box should contain the original query:
packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts#L40
2) [chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:39:3 › with a manual query correction › search box should contain the original query
Error: Timed out 7000ms waiting for expect(locator).toHaveValue(expected)
Locator: locator('atomic-search-box').getByPlaceholder('Search')
Expected string: "coveoo"
Received string: ""
Call log:
- expect.toHaveValue with timeout 7000ms
- waiting for locator('atomic-search-box').getByPlaceholder('Search')
11 × locator resolved to <textarea rows="1" part="textarea" autocorrect="off" autocomplete="off" placeholder="Search" autocapitalize="off" aria-haspopup="true" aria-autocomplete="both" class="placeholder-neutral-dark" aria-controls="atomic-search-box-1cn6c-popup" title="Search field with suggestions. To begin navigating suggestions, while focused, press Down Arrow. To send, press Enter." aria-label="Search field with suggestions. To begin navigating suggestions, while focused, press Down Arrow. To send, press Enter."></textarea>
- unexpected value ""
38 |
39 | test('search box should contain the original query', async ({searchBox}) => {
> 40 | await expect(searchBox.searchInput).toHaveValue(ORIGINAL_QUERY);
| ^
41 | });
42 |
43 | test('should show did you mean text', async ({page}) => {
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:40:41
|
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:55:3 › with a manual query correction › when clicking on the manual correction button:
packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts#L59
1) [chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:55:3 › with a manual query correction › when clicking on the manual correction button, the search box should contain the corrected query
Error: locator.click: Error: strict mode violation: getByRole('button', { name: 'coveo' }) resolved to 2 elements:
1) <button data-query="coveoo" aria-label="“coveoo”, recent query. 2 of 2." part="suggestion suggestion-with-query recent-query-item" id="atomic-search-box-h1wbk-left-suggestion-recent-coveoo" class="flex px-4 min-h-10 items-center text-left text-neutral-dark cursor-pointer">…</button> aka getByRole('button', { name: '“coveoo”, recent query. 2 of' })
2) <button part="correction-btn" class="text-primary hover:text-primary-light focus-visible:text-primary-light py-1 hover:underline focus-visible:underline">coveo</button> aka getByRole('button', { name: 'coveo', exact: true })
Call log:
- waiting for getByRole('button', { name: 'coveo' })
57 | page,
58 | }) => {
> 59 | await page.getByRole('button', {name: CORRECTED_QUERY}).click();
| ^
60 | await expect(searchBox.searchInput).toHaveValue(CORRECTED_QUERY);
61 | });
62 | });
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:59:61
|
[chromium] › src/components/commerce/product-template-components/atomic-product-multi-value-text/e2e/atomic-product-multi-value-text.e2e.ts:105:3 › with max-values-to-display set to total number of values (6) › should not render an indicator that more values are available:
packages/atomic/src/components/commerce/product-template-components/atomic-product-multi-value-text/e2e/atomic-product-multi-value-text.e2e.ts#L108
1) [chromium] › src/components/commerce/product-template-components/atomic-product-multi-value-text/e2e/atomic-product-multi-value-text.e2e.ts:105:3 › with max-values-to-display set to total number of values (6) › should not render an indicator that more values are available
Error: expect(locator).not.toBeVisible()
Locator: locator('atomic-product-multi-value-text[class*="hydrated"]').first().getByText('more...')
Expected: not visible
Received: visible
Call log:
- expect.not.toBeVisible with timeout 7000ms
- waiting for locator('atomic-product-multi-value-text[class*="hydrated"]').first().getByText('more...')
106 | productMultiValueText,
107 | }) => {
> 108 | expect(productMultiValueText.moreValuesIndicator()).not.toBeVisible();
| ^
109 | });
110 | });
111 |
at /home/runner/work/ui-kit/ui-kit/packages/atomic/src/components/commerce/product-template-components/atomic-product-multi-value-text/e2e/atomic-product-multi-value-text.e2e.ts:108:61
|
Run e2e tests on Atomic (36)
The process '/opt/hostedtoolcache/node/22.13.1/x64/bin/npx' failed with exit code 1
|
Run e2e tests on Atomic (36)
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
Run Quantic E2E tests / Run Cypress e2e tests on Quantic (cypress/e2e/default-1/**/*)
The run was canceled by @madame-la-pieuvre[bot].
|
Run Quantic E2E tests / Run Cypress e2e tests on Quantic (cypress/e2e/default-1/**/*)
The operation was canceled.
|
Run Quantic E2E tests / Run Cypress e2e tests on Quantic (cypress/e2e/facets-1/**/*)
The run was canceled by @madame-la-pieuvre[bot].
|
Run e2e tests on Atomic (30)
The run was canceled by @madame-la-pieuvre[bot].
|
Run Quantic E2E tests / Run Cypress e2e tests on Quantic (cypress/e2e/facets-2/**/*)
The run was canceled by @madame-la-pieuvre[bot].
|
Run Quantic E2E tests / Run Cypress e2e tests on Quantic (cypress/e2e/default-2/**/*)
The run was canceled by @madame-la-pieuvre[bot].
|
Run Quantic E2E tests / Run Playwright e2e tests on Quantic
The run was canceled by @madame-la-pieuvre[bot].
|
Confirm build is valid (PR)
Process completed with exit code 1.
|
Confirm build is valid
Process completed with exit code 1.
|
Build CDN
Cache not found for keys: npm-f8f7fd8e136bfdeb3081e3aa9809d41a0071271eabc03336f703fe4974c1b302
|
Build CDN
Cache not found for keys: quantic-82143cb905770c38b5e6a31fbdc46476c9d7f88d465e66220fc3ea62e2f5d392}}
|
Build CDN
Cache not found for keys: cy-82143cb905770c38b5e6a31fbdc46476c9d7f88d465e66220fc3ea62e2f5d392
|
Build CDN
Cache not found for keys: nx-339393eb45c2dd82a1c26e804f417464a34972ba-cdn
|
Build
Cache not found for keys: npm-f8f7fd8e136bfdeb3081e3aa9809d41a0071271eabc03336f703fe4974c1b302
|
Build
Cache not found for keys: quantic-82143cb905770c38b5e6a31fbdc46476c9d7f88d465e66220fc3ea62e2f5d392}}
|
Build
Cache not found for keys: cy-82143cb905770c38b5e6a31fbdc46476c9d7f88d465e66220fc3ea62e2f5d392
|
Build
Cache not found for keys: nx-339393eb45c2dd82a1c26e804f417464a34972ba-default
|
Build
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Build
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Build
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts took 36.3s
|
Slow Test:
packages/atomic/[chromium] › src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L1
packages/atomic/[chromium] › src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts took 20.3s
|
Slow Test:
packages/atomic/[chromium] › src/components/search/facets/atomic-facet/e2e/atomic-facet.e2e.ts#L1
packages/atomic/[chromium] › src/components/search/facets/atomic-facet/e2e/atomic-facet.e2e.ts took 18.4s
|
Slow Test:
packages/atomic/[chromium] › src/components/search/facets/atomic-timeframe-facet/e2e/atomic-timeframe-facet.e2e.ts#L1
packages/atomic/[chromium] › src/components/search/facets/atomic-timeframe-facet/e2e/atomic-timeframe-facet.e2e.ts took 19.4s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts took 16.2s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts took 20.1s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-pager/e2e/atomic-commerce-pager.e2e.ts took 22.6s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts took 19.3s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts took 37.7s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-breadbox/e2e/atomic-commerce-breadbox.e2e.ts took 32.5s
|
Slow Test:
packages/atomic/[chromium] › src/components/search/result-template-components/atomic-quickview/e2e/atomic-quickview.e2e.ts#L1
packages/atomic/[chromium] › src/components/search/result-template-components/atomic-quickview/e2e/atomic-quickview.e2e.ts took 35.2s
|
Slow Test:
packages/atomic/[chromium] › src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts#L1
packages/atomic/[chromium] › src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts took 17.3s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-search-box/e2e/atomic-commerce-search-box.e2e.ts took 28.0s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-product-list/e2e/atomic-commerce-product-list.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/atomic-commerce-product-list/e2e/atomic-commerce-product-list.e2e.ts took 32.7s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts took 18.6s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-description/e2e/atomic-product-description.e2e.ts took 32.9s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts took 22.4s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts took 28.3s
|
Slow Test:
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts#L1
packages/atomic/[chromium] › src/components/commerce/product-template-components/atomic-product-image/e2e/atomic-product-image.e2e.ts took 18.2s
|
Run Quantic E2E tests / Setup e2e tests on Quantic
Cache not found for keys: quantic-cypress-config-339393eb45c2dd82a1c26e804f417464a34972ba
|
Run Quantic E2E tests / Setup e2e tests on Quantic
Cache not found for keys: quantic-playwright-env-339393eb45c2dd82a1c26e804f417464a34972ba
|
🎭 Playwright Run Summary
24 passed (42.0s)
|
🎭 Playwright Run Summary
24 passed (26.6s)
|
🎭 Playwright Run Summary
24 passed (29.1s)
|
🎭 Playwright Run Summary
24 passed (32.5s)
|
🎭 Playwright Run Summary
24 passed (30.7s)
|
🎭 Playwright Run Summary
24 passed (34.1s)
|
🎭 Playwright Run Summary
24 passed (26.0s)
|
🎭 Playwright Run Summary
24 passed (41.9s)
|
🎭 Playwright Run Summary
25 passed (35.5s)
|
🎭 Playwright Run Summary
2 flaky
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:22:3 › with an automatic query correction › should display the auto corrected
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:39:3 › with a manual query correction › search box should contain the original query
22 passed (41.6s)
|
🎭 Playwright Run Summary
24 passed (48.5s)
|
🎭 Playwright Run Summary
25 passed (43.5s)
|
🎭 Playwright Run Summary
25 passed (51.4s)
|
🎭 Playwright Run Summary
24 passed (47.8s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › src/components/search/atomic-did-you-mean/e2e/atomic-did-you-mean.e2e.ts:55:3 › with a manual query correction › when clicking on the manual correction button, the search box should contain the corrected query
8 skipped
15 passed (32.7s)
|
🎭 Playwright Run Summary
3 skipped
21 passed (54.0s)
|
🎭 Playwright Run Summary
24 passed (33.6s)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › src/components/commerce/product-template-components/atomic-product-multi-value-text/e2e/atomic-product-multi-value-text.e2e.ts:105:3 › with max-values-to-display set to total number of values (6) › should not render an indicator that more values are available
23 passed (38.9s)
|
🎭 Playwright Run Summary
24 passed (53.1s)
|
🎭 Playwright Run Summary
24 passed (41.9s)
|
🎭 Playwright Run Summary
2 skipped
22 passed (50.1s)
|
🎭 Playwright Run Summary
24 passed (41.5s)
|
🎭 Playwright Run Summary
25 passed (37.8s)
|
🎭 Playwright Run Summary
24 passed (1.0m)
|
🎭 Playwright Run Summary
24 passed (56.0s)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
atomic-e2e-screenshots-
|
289 KB |
|
atomic-hosted-page-playwright-report
Expired
|
172 KB |
|
atomic-playwright-report
Expired
|
2.02 MB |
|
blob-report-1
Expired
|
22.7 KB |
|
blob-report-10
Expired
|
21.3 KB |
|
blob-report-11
Expired
|
25.6 KB |
|
blob-report-12
Expired
|
23.8 KB |
|
blob-report-13
Expired
|
24.7 KB |
|
blob-report-14
Expired
|
232 KB |
|
blob-report-15
Expired
|
26 KB |
|
blob-report-16
Expired
|
682 KB |
|
blob-report-17
Expired
|
342 KB |
|
blob-report-18
Expired
|
22.4 KB |
|
blob-report-19
Expired
|
27.2 KB |
|
blob-report-2
Expired
|
27.6 KB |
|
blob-report-20
Expired
|
25.1 KB |
|
blob-report-21
Expired
|
19.7 KB |
|
blob-report-22
Expired
|
20.2 KB |
|
blob-report-23
Expired
|
22.1 KB |
|
blob-report-24
Expired
|
23.7 KB |
|
blob-report-3
Expired
|
22.9 KB |
|
blob-report-4
Expired
|
23.1 KB |
|
blob-report-5
Expired
|
32.4 KB |
|
blob-report-6
Expired
|
23 KB |
|
blob-report-7
Expired
|
24.8 KB |
|
blob-report-8
Expired
|
22 KB |
|
blob-report-9
Expired
|
22.5 KB |
|
result-lists-screenshots
|
12.4 MB |
|