Skip to content

Relax dependencies on Radix-UI to SemVer MAJOR releases #265

Relax dependencies on Radix-UI to SemVer MAJOR releases

Relax dependencies on Radix-UI to SemVer MAJOR releases #265

Re-run triggered July 10, 2024 05:38
Status Success
Total duration 4m 27s
Artifacts 1

test.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors, 4 warnings, and 1 notice
[webkit] › basic.test.ts:23:7 › basic behavior › item onSelect is called on click: test/basic.test.ts#L26
1) [webkit] › basic.test.ts:23:7 › basic behavior › item onSelect is called on click ───────────── Error: expect(received).toEqual(expected) // deep equality Expected: "Item selected" Received: "[HMR] connected" 24 | const item = page.locator(`[cmdk-item][data-value="Item"]`) 25 | const [message] = await Promise.all([page.waitForEvent('console'), item.click()]) > 26 | expect(message.text()).toEqual('Item selected') | ^ 27 | }) 28 | 29 | test('first item is selected by default', async ({ page }) => { at /home/runner/work/cmdk/cmdk/test/basic.test.ts:26:28
[webkit] › basic.test.ts:34:7 › basic behavior › first item is selected when search changes: test/basic.test.ts#L1
2) [webkit] › basic.test.ts:34:7 › basic behavior › first item is selected when search changes ─── Test timeout of 5000ms exceeded.
[webkit] › basic.test.ts:34:7 › basic behavior › first item is selected when search changes: test/basic.test.ts#L38
2) [webkit] › basic.test.ts:34:7 › basic behavior › first item is selected when search changes ─── Error: expect(locator).toHaveText(expected) Locator: locator('[cmdk-item][aria-selected="true"]') Expected string: "Value" Received string: "Item" Call log: - expect.toHaveText with timeout 5000ms - waiting for locator('[cmdk-item][aria-selected="true"]') - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" - locator resolved to <div class="item" cmdk-item="" role="option" id="radi…>Item</div> - unexpected value "Item" 36 | await input.type('x') 37 | const selected = page.locator(`[cmdk-item][aria-selected="true"]`) > 38 | await expect(selected).toHaveText('Value') | ^ 39 | }) 40 | 41 | test('items filter when searching', async ({ page }) => { at /home/runner/work/cmdk/cmdk/test/basic.test.ts:38:28
[webkit] › basic.test.ts:59:7 › basic behavior › empty component renders when there are no results: test/basic.test.ts#L1
3) [webkit] › basic.test.ts:59:7 › basic behavior › empty component renders when there are no results Test timeout of 5000ms exceeded.
[webkit] › basic.test.ts:59:7 › basic behavior › empty component renders when there are no results: test/basic.test.ts#L62
3) [webkit] › basic.test.ts:59:7 › basic behavior › empty component renders when there are no results Error: expect(locator).toHaveCount(expected) Locator: locator('[cmdk-item]') Expected: 0 Received: 2 Call log: - expect.toHaveCount with timeout 5000ms - waiting for locator('[cmdk-item]') - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" 60 | const input = page.locator('[cmdk-input]') 61 | await input.type('z') > 62 | await expect(page.locator(`[cmdk-item]`)).toHaveCount(0) | ^ 63 | await expect(page.locator(`[cmdk-empty]`)).toHaveText('No results.') 64 | }) 65 | at /home/runner/work/cmdk/cmdk/test/basic.test.ts:62:47
[webkit] › basic.test.ts:66:7 › basic behavior › className is applied to each part: test/basic.test.ts#L1
4) [webkit] › basic.test.ts:66:7 › basic behavior › className is applied to each part ──────────── Test timeout of 5000ms exceeded.
[webkit] › basic.test.ts:66:7 › basic behavior › className is applied to each part: test/basic.test.ts#L72
4) [webkit] › basic.test.ts:66:7 › basic behavior › className is applied to each part ──────────── Error: expect(locator).toHaveCount(expected) Locator: locator('.item') Expected: 0 Received: 2 Call log: - expect.toHaveCount with timeout 5000ms - waiting for locator('.item') - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" - locator resolved to 2 elements - unexpected value "2" 70 | await expect(page.locator(`.item`)).toHaveCount(2) 71 | await page.locator('[cmdk-input]').type('zzzz') > 72 | await expect(page.locator(`.item`)).toHaveCount(0) | ^ 73 | await expect(page.locator(`.empty`)).toHaveCount(1) 74 | }) 75 | }) at /home/runner/work/cmdk/cmdk/test/basic.test.ts:72:41
[webkit] › group.test.ts:14:7 › group › group can be progressively rendered: test/group.test.ts#L1
5) [webkit] › group.test.ts:14:7 › group › group can be progressively rendered ─────────────────── Test timeout of 5000ms exceeded.
[webkit] › group.test.ts:14:7 › group › group can be progressively rendered: test/group.test.ts#L19
5) [webkit] › group.test.ts:14:7 › group › group can be progressively rendered ─────────────────── Error: expect(locator).toBeVisible() Locator: locator('[cmdk-group][data-value="Numbers"]') Expected: visible Received: hidden Call log: - expect.toBeVisible with timeout 5000ms - waiting for locator('[cmdk-group][data-value="Numbers"]') 17 | await expect(page.locator(`[cmdk-group][data-value="Animals"]`)).not.toBeVisible() 18 | await expect(page.locator(`[cmdk-group][data-value="Letters"]`)).not.toBeVisible() > 19 | await expect(page.locator(`[cmdk-group][data-value="Numbers"]`)).toBeVisible() | ^ 20 | }) 21 | 22 | test('mounted group still rendered with filter using forceMount', async ({ page }) => { at /home/runner/work/cmdk/cmdk/test/group.test.ts:19:70
[webkit] › item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value: test/item.test.ts#L1
6) [webkit] › item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value Test timeout of 5000ms exceeded.
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: "playwright-report". 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/
test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, pnpm/action-setup@v2, actions/setup-node@v3, actions/upload-artifact@v2. 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: [webkit] › basic.test.ts#L1
[webkit] › basic.test.ts took 25.9s
🎭 Playwright Run Summary
8 flaky [webkit] › basic.test.ts:23:7 › basic behavior › item onSelect is called on click ────────────── [webkit] › basic.test.ts:34:7 › basic behavior › first item is selected when search changes ──── [webkit] › basic.test.ts:59:7 › basic behavior › empty component renders when there are no results [webkit] › basic.test.ts:66:7 › basic behavior › className is applied to each part ───────────── [webkit] › group.test.ts:14:7 › group › group can be progressively rendered ──────────────────── [webkit] › item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value [webkit] › keybind.test.ts:110:7 › no-vim keybinds › ctrl j/k does nothing ───────────────────── [webkit] › props.test.ts:11:7 › props › results match against custom filter ──────────────────── 33 passed (47.5s)

Artifacts

Produced during runtime
Name Size
playwright-report Expired
73.1 KB