fix styles for raycast preset #372
Merged
Annotations
10 errors and 1 notice
|
test/numeric.test.ts#L13
5) [webkit] › test/numeric.test.ts:8:7 › behavior for numeric values › items filter correctly on numeric inputs
Error: expect(locator).toHaveCount(expected)
Locator: locator('[cmdk-item][data-value="removed"]')
Expected: 0
Received: 1
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('[cmdk-item][data-value="removed"]')
8 × locator resolved to 1 element
- unexpected value "1"
11 | const removed = page.locator(`[cmdk-item][data-value="removed"]`)
12 | const remains = page.locator(`[cmdk-item][data-value="foo.bar112.value"]`)
> 13 | await expect(removed).toHaveCount(0)
| ^
14 | await expect(remains).toHaveCount(1)
15 | })
16 |
at /home/runner/work/cmdk/cmdk/test/numeric.test.ts:13:27
|
|
test/numeric.test.ts#L0
5) [webkit] › test/numeric.test.ts:8:7 › behavior for numeric values › items filter correctly on numeric inputs
Test timeout of 5000ms exceeded.
|
|
test/item.test.ts#L68
4) [webkit] › test/item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value
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]')
8 × locator resolved to 2 elements
- unexpected value "2"
66 | const button = page.locator(`data-testid=increment`)
67 | await button.click()
> 68 | await expect(page.locator(`[cmdk-item]`)).toHaveCount(0)
| ^
69 | await button.click()
70 | await expect(page.locator(`[cmdk-item]`)).toHaveCount(2)
71 | })
at /home/runner/work/cmdk/cmdk/test/item.test.ts:68:47
|
|
test/item.test.ts#L0
4) [webkit] › test/item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value
Test timeout of 5000ms exceeded.
|
|
test/item.test.ts#L10
3) [webkit] › test/item.test.ts:8:7 › item › mounted item matches search ─────────────────────────
Error: expect(locator).toHaveCount(expected)
Locator: locator('[cmdk-item]')
Expected: 0
Received: 1
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('[cmdk-item]')
8 × locator resolved to 1 element
- unexpected value "1"
8 | test('mounted item matches search', async ({ page }) => {
9 | await page.locator(`[cmdk-input]`).type('b')
> 10 | await expect(page.locator(`[cmdk-item]`)).toHaveCount(0)
| ^
11 | await page.locator(`data-testid=mount`).click()
12 | await expect(page.locator(`[cmdk-item]`)).toHaveText('B')
13 | })
at /home/runner/work/cmdk/cmdk/test/item.test.ts:10:47
|
|
test/item.test.ts#L0
3) [webkit] › test/item.test.ts:8:7 › item › mounted item matches search ─────────────────────────
Test timeout of 5000ms exceeded.
|
|
test/group.test.ts#L10
2) [webkit] › test/group.test.ts:8:7 › group › groups are shown/hidden based on item matches ─────
Error: expect(locator).not.toBeVisible()
Locator: locator('[cmdk-group][data-value="Animals"]')
Expected: not visible
Received: visible
Call log:
- expect.not.toBeVisible with timeout 5000ms
- waiting for locator('[cmdk-group][data-value="Animals"]')
8 × locator resolved to <div cmdk-group="" role="presentation" data-value="Animals">…</div>
- unexpected value "visible"
8 | test('groups are shown/hidden based on item matches', async ({ page }) => {
9 | await page.locator(`[cmdk-input]`).type('z')
> 10 | await expect(page.locator(`[cmdk-group][data-value="Animals"]`)).not.toBeVisible()
| ^
11 | await expect(page.locator(`[cmdk-group][data-value="Letters"]`)).toBeVisible()
12 | })
13 |
at /home/runner/work/cmdk/cmdk/test/group.test.ts:10:74
|
|
test/group.test.ts#L0
2) [webkit] › test/group.test.ts:8:7 › group › groups are shown/hidden based on item matches ─────
Test timeout of 5000ms exceeded.
|
|
test/basic.test.ts#L55
1) [webkit] › test/basic.test.ts:50:7 › basic behavior › items filter when searching by keywords ─
Error: expect(locator).toHaveCount(expected)
Locator: locator('[cmdk-item][data-value="xxx"]')
Expected: 0
Received: 1
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('[cmdk-item][data-value="xxx"]')
8 × locator resolved to 1 element
- unexpected value "1"
53 | const removed = page.locator(`[cmdk-item][data-value="xxx"]`)
54 | const remains = page.locator(`[cmdk-item][data-value="Item"]`)
> 55 | await expect(removed).toHaveCount(0)
| ^
56 | await expect(remains).toHaveCount(1)
57 | })
58 |
at /home/runner/work/cmdk/cmdk/test/basic.test.ts:55:27
|
|
test/basic.test.ts#L0
1) [webkit] › test/basic.test.ts:50:7 › basic behavior › items filter when searching by keywords ─
Test timeout of 5000ms exceeded.
|
|
6 flaky
[webkit] › test/basic.test.ts:50:7 › basic behavior › items filter when searching by keywords ──
[webkit] › test/group.test.ts:8:7 › group › groups are shown/hidden based on item matches ──────
[webkit] › test/item.test.ts:8:7 › item › mounted item matches search ──────────────────────────
[webkit] › test/item.test.ts:63:7 › item advanced › re-rendering re-matches implicit textContent value
[webkit] › test/numeric.test.ts:8:7 › behavior for numeric values › items filter correctly on numeric inputs
[webkit] › test/props.test.ts:11:7 › props › results match against custom filter ───────────────
35 passed (42.8s)
|
The logs for this run have expired and are no longer available.
Loading