feat: rebuild theme-default #2143
Annotations
10 errors, 1 warning, and 1 notice
E2E test (base /):
e2e/tests/plugin-copy-code/copy-code.spec.ts#L14
1) [chromium] › plugin-copy-code/copy-code.spec.ts:4:3 › copy-code › have copy code button ───────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.vp-copy-code-button')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.vp-copy-code-button')
9 × locator resolved to 0 elements
- unexpected value "0"
12 | const locator = page.locator('.vp-copy-code-button')
13 |
> 14 | await expect(locator).toHaveCount(1)
| ^
15 |
16 | await locator.first().click()
17 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copy-code/copy-code.spec.ts:14:27
|
E2E test (base /):
e2e/tests/plugin-copy-code/copy-code.spec.ts#L14
1) [chromium] › plugin-copy-code/copy-code.spec.ts:4:3 › copy-code › have copy code button ───────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.vp-copy-code-button')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.vp-copy-code-button')
9 × locator resolved to 0 elements
- unexpected value "0"
12 | const locator = page.locator('.vp-copy-code-button')
13 |
> 14 | await expect(locator).toHaveCount(1)
| ^
15 |
16 | await locator.first().click()
17 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copy-code/copy-code.spec.ts:14:27
|
E2E test (base /):
e2e/tests/plugin-copy-code/copy-code.spec.ts#L14
1) [chromium] › plugin-copy-code/copy-code.spec.ts:4:3 › copy-code › have copy code button ───────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.vp-copy-code-button')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.vp-copy-code-button')
9 × locator resolved to 0 elements
- unexpected value "0"
12 | const locator = page.locator('.vp-copy-code-button')
13 |
> 14 | await expect(locator).toHaveCount(1)
| ^
15 |
16 | await locator.first().click()
17 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copy-code/copy-code.spec.ts:14:27
|
E2E test (base /):
e2e/tests/plugin-copyright/copyright.spec.ts#L11
2) [chromium] › plugin-copyright/copyright.spec.ts:4:3 › plugin-copyright › disable selection ────
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#app')
Expected string: "none"
Received string: "auto"
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#app')
9 × locator resolved to <div id="app"></div>
- unexpected value "auto"
9 | await page.goto('copyright/selection.html')
10 |
> 11 | await expect(page.locator('#app')).toHaveCSS('user-select', 'none')
| ^
12 | })
13 | })
14 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copyright/copyright.spec.ts:11:40
|
E2E test (base /):
e2e/tests/plugin-copyright/copyright.spec.ts#L11
2) [chromium] › plugin-copyright/copyright.spec.ts:4:3 › plugin-copyright › disable selection ────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#app')
Expected string: "none"
Received string: "auto"
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#app')
9 × locator resolved to <div id="app"></div>
- unexpected value "auto"
9 | await page.goto('copyright/selection.html')
10 |
> 11 | await expect(page.locator('#app')).toHaveCSS('user-select', 'none')
| ^
12 | })
13 | })
14 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copyright/copyright.spec.ts:11:40
|
E2E test (base /):
e2e/tests/plugin-copyright/copyright.spec.ts#L11
2) [chromium] › plugin-copyright/copyright.spec.ts:4:3 › plugin-copyright › disable selection ────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#app')
Expected string: "none"
Received string: "auto"
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#app')
9 × locator resolved to <div id="app"></div>
- unexpected value "auto"
9 | await page.goto('copyright/selection.html')
10 |
> 11 | await expect(page.locator('#app')).toHaveCSS('user-select', 'none')
| ^
12 | })
13 | })
14 |
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-copyright/copyright.spec.ts:11:40
|
E2E test (base /):
e2e/tests/plugin-hint/hint.spec.ts#L10
3) [chromium] › plugin-hint/hint.spec.ts:4:3 › hint › render default containers ──────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.hint-container.tip')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.hint-container.tip')
9 × locator resolved to 0 elements
- unexpected value "0"
8 | ['tip', 'warning', 'caution', 'info', 'note', 'important', 'details'].map(
9 | async (item) => {
> 10 | await expect(page.locator(`.hint-container.${item}`)).toHaveCount(1)
| ^
11 |
12 | if (item === 'details')
13 | await expect(
at map (/home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:10:65)
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:8:77
|
E2E test (base /):
e2e/tests/plugin-hint/hint.spec.ts#L10
3) [chromium] › plugin-hint/hint.spec.ts:4:3 › hint › render default containers ──────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.hint-container.tip')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.hint-container.tip')
9 × locator resolved to 0 elements
- unexpected value "0"
8 | ['tip', 'warning', 'caution', 'info', 'note', 'important', 'details'].map(
9 | async (item) => {
> 10 | await expect(page.locator(`.hint-container.${item}`)).toHaveCount(1)
| ^
11 |
12 | if (item === 'details')
13 | await expect(
at map (/home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:10:65)
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:8:77
|
E2E test (base /):
e2e/tests/plugin-hint/hint.spec.ts#L10
3) [chromium] › plugin-hint/hint.spec.ts:4:3 › hint › render default containers ──────────────────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.hint-container.tip')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.hint-container.tip')
9 × locator resolved to 0 elements
- unexpected value "0"
8 | ['tip', 'warning', 'caution', 'info', 'note', 'important', 'details'].map(
9 | async (item) => {
> 10 | await expect(page.locator(`.hint-container.${item}`)).toHaveCount(1)
| ^
11 |
12 | if (item === 'details')
13 | await expect(
at map (/home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:10:65)
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:8:77
|
E2E test (base /):
e2e/tests/plugin-hint/hint.spec.ts#L31
4) [chromium] › plugin-hint/hint.spec.ts:25:3 › hint › render custom title containers ────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.hint-container.tip')
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.hint-container.tip')
9 × locator resolved to 0 elements
- unexpected value "0"
29 | ['tip', 'warning', 'caution', 'info', 'note', 'important', 'details'].map(
30 | async (item) => {
> 31 | await expect(page.locator(`.hint-container.${item}`)).toHaveCount(1)
| ^
32 |
33 | if (item === 'details')
34 | await expect(
at map (/home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:31:65)
at /home/runner/work/ecosystem/ecosystem/e2e/tests/plugin-hint/hint.spec.ts:29:77
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
E2E test (base /)
22 failed
[chromium] › plugin-copy-code/copy-code.spec.ts:4:3 › copy-code › have copy code button ────────
[chromium] › plugin-copyright/copyright.spec.ts:4:3 › plugin-copyright › disable selection ─────
[chromium] › plugin-hint/hint.spec.ts:4:3 › hint › render default containers ───────────────────
[chromium] › plugin-hint/hint.spec.ts:25:3 › hint › render custom title containers ─────────────
[chromium] › plugin-notice/notice.spec.ts:10:3 › notice › have notice component ────────────────
[chromium] › plugin-notice/notice.spec.ts:24:3 › notice › have fullscreen notice component ─────
[chromium] › plugin-redirect/redirect.spec.ts:12:3 › plugin-redirect › frontmatter redirectTo ──
[chromium] › plugin-register-components/register-components.spec.ts:4:3 › plugin-register-components › components
[chromium] › plugin-register-components/register-components.spec.ts:12:3 › plugin-register-components › componentsDir
[chromium] › plugin-register-components/register-components.spec.ts:18:3 › plugin-register-components › componentsPatterns
[chromium] › plugin-sass-palette/sass-palette.spec.ts:4:3 › plugin-sass-palette › palette value
[chromium] › plugin-sass-palette/sass-palette.spec.ts:11:3 › plugin-sass-palette › default palette
[chromium] › plugin-sass-palette/sass-palette.spec.ts:21:3 › plugin-sass-palette › user palette override
[chromium] › plugin-sass-palette/sass-palette.spec.ts:27:3 › plugin-sass-palette › user palette user
[chromium] › plugin-sass-palette/sass-palette.spec.ts:33:3 › plugin-sass-palette › generator ───
[chromium] › plugin-seo/seo.spec.ts:5:3 › plugin-seo › have OGP ────────────────────────────────
[chromium] › plugin-seo/seo.spec.ts:42:3 › plugin-seo › have JSONLD ────────────────────────────
[chromium] › plugin-theme-data/theme-data.spec.ts:4:3 › plugin-theme-data › theme data ─────────
[chromium] › plugin-theme-data/theme-data.spec.ts:173:3 › plugin-theme-data › theme locale data
[chromium] › plugin-watermark/watermark.spec.ts:4:3 › plugin-watermark › watermark enabled ─────
[chromium] › theme-default/sidebar.spec.ts:14:3 › has heading sidebar › config ─────────────────
[chromium] › theme-default/sidebar.spec.ts:32:3 › has configured sidebar › theme config ────────
25 passed (14.8m)
|
Loading