docs(headless-react): pagination typedoc reference #26610
prbot.yml
on: pull_request
Matrix: Run e2e tests on Atomic
Check with linter
4m 10s
Run unit tests
3m 52s
Run e2e screenshots tests on Atomic
2m 2s
Run e2e tests on Atomic React
2m 13s
Run e2e tests on Atomic React NextJS
1m 54s
Run e2e tests for IIFE
11s
Run e2e tests on Atomic Angular
2m 36s
Run e2e tests on Vue.js sample
1m 13s
Run e2e tests on Stencil.js sample
2m 6s
Run e2e tests for Atomic Hosted Page
2m 35s
Run e2e tests for Headless Commerce SSR
3m 6s
Run e2e tests on Atomic insight panel
1m 55s
Run e2e tests on Headless SSR App router sample in dev mode
2m 59s
Run e2e tests on Headless SSR App router sample in prod mode
2m 7s
Run e2e tests on Headless SSR Pages router sample in dev mode
2m 36s
Run e2e tests on Headless SSR Pages router sample in prod mode
2m 49s
Verify compatibility of packages
1m 14s
Build typedoc
1m 55s
CDN Checks
4m 1s
Run Quantic E2E tests
/
Setup e2e tests on Quantic
7m 49s
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
9m 42s
Merge Playwright reports
1m 36s
Confirm build is valid
8s
Annotations
11 errors, 22 warnings, and 26 notices
[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-vrkox-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
|
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L27
1) [LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "10"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
25 | test
26 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 27 | .toHaveText(defaultInitialChoice.toString());
| ^
28 | });
29 |
30 | test.describe('when selecting a new results per page option', () => {
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:27:12
|
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L92
2) [LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "50"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
90 | test
91 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 92 | .toHaveText(expectedResultsPerPage.toString());
| ^
93 | });
94 | });
95 | }
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:92:14
|
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L27
3) [LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "10"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
25 | test
26 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 27 | .toHaveText(defaultInitialChoice.toString());
| ^
28 | });
29 |
30 | test.describe('when selecting a new results per page option', () => {
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:27:12
|
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L50
4) [LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "25"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
48 | test
49 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 50 | .toHaveText(newChoice.toString());
| ^
51 | test
52 | .expect(searchResponse.request().postDataJSON()?.numberOfResults)
53 | .toBe(newChoice);
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:50:14
|
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L27
5) [LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "10"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
25 | test
26 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 27 | .toHaveText(defaultInitialChoice.toString());
| ^
28 | });
29 |
30 | test.describe('when selecting a new results per page option', () => {
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:27:12
|
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the search use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L50
6) [LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the search use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "25"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
48 | test
49 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 50 | .toHaveText(newChoice.toString());
| ^
51 | test
52 | .expect(searchResponse.request().postDataJSON()?.numberOfResults)
53 | .toBe(newChoice);
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:50:14
|
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L92
7) [LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "50"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
90 | test
91 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 92 | .toHaveText(expectedResultsPerPage.toString());
| ^
93 | });
94 | });
95 | }
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:92:14
|
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L27
8) [LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "10"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
25 | test
26 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 27 | .toHaveText(defaultInitialChoice.toString());
| ^
28 | });
29 |
30 | test.describe('when selecting a new results per page option', () => {
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:27:12
|
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics:
packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts#L50
9) [LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
Error: expect(locator).toHaveText(expected)
Locator: getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
Expected string: "25"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByTestId('results-per-page').locator('c-quantic-number-button').filter({ has: locator('button.slds-button_brand') })
48 | test
49 | .expect(resultsPerPage.selectedResultsPerPageOption)
> 50 | .toHaveText(newChoice.toString());
| ^
51 | test
52 | .expect(searchResponse.request().postDataJSON()?.numberOfResults)
53 | .toBe(newChoice);
at /home/runner/work/ui-kit/ui-kit/packages/quantic/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:50:14
|
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 34.1s
|
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.3s
|
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.5s
|
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 17.4s
|
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.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 36.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 26.1s
|
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 25.0s
|
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 28.7s
|
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 29.0s
|
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 19.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 39.2s
|
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.8s
|
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 19.6s
|
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 34.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.6s
|
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 17.9s
|
Slow Test:
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts#L1
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts took 39.7s
|
Slow Test:
packages/quantic/[LWS-enabled] › force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts#L1
packages/quantic/[LWS-enabled] › force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts took 37.4s
|
Slow Test:
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts#L1
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts took 36.9s
|
Slow Test:
packages/quantic/[LWS-enabled] › force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts#L1
packages/quantic/[LWS-enabled] › force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts took 34.6s
|
Slow Test:
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts#L1
packages/quantic/[LWS-disabled] › force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts took 32.0s
|
🎭 Playwright Run Summary
24 passed (39.9s)
|
🎭 Playwright Run Summary
24 passed (25.5s)
|
🎭 Playwright Run Summary
25 passed (35.2s)
|
🎭 Playwright Run Summary
24 passed (32.1s)
|
🎭 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 (39.1s)
|
🎭 Playwright Run Summary
24 passed (44.4s)
|
🎭 Playwright Run Summary
24 passed (42.4s)
|
🎭 Playwright Run Summary
24 passed (35.9s)
|
🎭 Playwright Run Summary
24 passed (48.4s)
|
🎭 Playwright Run Summary
24 passed (45.5s)
|
🎭 Playwright Run Summary
2 skipped
22 passed (44.9s)
|
🎭 Playwright Run Summary
24 passed (38.8s)
|
🎭 Playwright Run Summary
25 passed (41.8s)
|
🎭 Playwright Run Summary
24 passed (38.7s)
|
🎭 Playwright Run Summary
24 passed (32.0s)
|
🎭 Playwright Run Summary
24 passed (43.0s)
|
🎭 Playwright Run Summary
24 passed (54.2s)
|
🎭 Playwright Run Summary
8 skipped
16 passed (27.8s)
|
🎭 Playwright Run Summary
25 passed (58.6s)
|
🎭 Playwright Run Summary
24 passed (34.3s)
|
🎭 Playwright Run Summary
24 passed (44.6s)
|
🎭 Playwright Run Summary
24 passed (28.9s)
|
🎭 Playwright Run Summary
25 passed (43.0s)
|
🎭 Playwright Run Summary
3 skipped
21 passed (50.3s)
|
🎭 Playwright Run Summary
24 passed (48.4s)
|
🎭 Playwright Run Summary
9 flaky
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected
[LWS-enabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the search use case › with default options › should load as expected
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the search use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:81:9 › quantic results per page in the search use case › when loading from URL hash › should load the right number of results per page
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:20:7 › quantic results per page in the insight use case › with default options › should load as expected
[LWS-disabled] › force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts:31:9 › quantic results per page in the insight use case › with default options › when selecting a new results per page option › should trigger a new search and log analytics
163 passed (7.3m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
atomic-hosted-page-playwright-report
|
172 KB |
|
atomic-playwright-report
|
1.42 MB |
|
blob-report-1
|
22.6 KB |
|
blob-report-10
|
21.2 KB |
|
blob-report-11
|
25.5 KB |
|
blob-report-12
|
23.8 KB |
|
blob-report-13
|
24.8 KB |
|
blob-report-14
|
22.2 KB |
|
blob-report-15
|
26.1 KB |
|
blob-report-16
|
605 KB |
|
blob-report-17
|
17.9 KB |
|
blob-report-18
|
22.4 KB |
|
blob-report-19
|
28.4 KB |
|
blob-report-2
|
27.5 KB |
|
blob-report-20
|
26.3 KB |
|
blob-report-21
|
19.8 KB |
|
blob-report-22
|
20.5 KB |
|
blob-report-23
|
22.1 KB |
|
blob-report-24
|
23.6 KB |
|
blob-report-3
|
22.9 KB |
|
blob-report-4
|
23 KB |
|
blob-report-5
|
32.6 KB |
|
blob-report-6
|
23 KB |
|
blob-report-7
|
24.3 KB |
|
blob-report-8
|
22.1 KB |
|
blob-report-9
|
22.6 KB |
|
quantic-playwright-report
|
9.77 MB |
|
result-lists-screenshots
|
19.8 MB |
|