refactor: remove temp page files and load page component via bundler (close #1584) #511
Triggered via pull request
September 11, 2024 04:33
Status
Failure
Total duration
1h 50m 25s
Artifacts
–
Annotations
97 errors and 45 notices
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly:
e2e/tests/hmr.spec.ts#L74
1) [chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly âââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.e2e-theme-content #rendered-foo + p')
Expected string: "HMR foo"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.e2e-theme-content #rendered-foo + p')
72 | await page.goto('hmr/frontmatter.html')
73 |
> 74 | await expect(frontmatterLocator).toHaveText('HMR foo')
| ^
75 | await hmrUpdateFrontmatter()
76 | await expect(frontmatterLocator).toHaveText('Updated foo')
77 | })
at /Users/runner/work/core/core/e2e/tests/hmr.spec.ts:74:38
|
[chromium] âş imports/conditional-exports.spec.ts:4:1 âş should load different files correctly:
e2e/tests/imports/conditional-exports.spec.ts#L7
1) [chromium] âş imports/conditional-exports.spec.ts:4:1 âş should load different files correctly ââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.e2e-theme-content p')
Expected string: "browser-mjs"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.e2e-theme-content p')
5 | await page.goto('imports/conditional-exports.html')
6 |
> 7 | await expect(page.locator('.e2e-theme-content p')).toHaveText('browser-mjs')
| ^
8 |
9 | if (COMMAND === 'build') {
10 | expect(
at /home/runner/work/core/core/e2e/tests/imports/conditional-exports.spec.ts:7:54
|
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly:
e2e/tests/hmr.spec.ts#L87
1) [chromium] âş hmr.spec.ts:79:3 âş should update title correctly âââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveTitle(expected)
Locator: locator(':root')
Expected pattern: /HMR Title/
Received string: ""
Call log:
- expect.toHaveTitle with timeout 5000ms
- waiting for locator(':root')
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
- locator resolved to <html lang="en">âŚ</html>
- unexpected value ""
85 | await page.goto('hmr/title.html')
86 |
> 87 | await expect(page).toHaveTitle(/HMR Title/)
| ^
88 | await expect(titleLocator).toHaveText('HMR Title')
89 | await expect(renderedTitleLocator).toHaveText('HMR Title')
90 | await hmrUpdateTitle()
at /Users/runner/work/core/core/e2e/tests/hmr.spec.ts:87:24
|
[chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query:
e2e\tests\router\navigate-by-router.spec.ts#L40
1) [chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query ââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)
Locator: locator(':root')
Expected string: "http://127.0.0.1:9080/404.html#404?notFound=true"
Received string: "http://127.0.0.1:9080/router/navigate-by-router.html"
Call log:
- expect.toHaveURL with timeout 5000ms
- waiting for locator(':root')
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/router/navigate-by-router.html"
38 | test('should preserve hash and query', async ({ page }) => {
39 | await page.locator('#not-found-with-hash-and-query').click()
> 40 | await expect(page).toHaveURL(`${BASE}404.html#404?notFound=true`)
| ^
41 | await expect(page.locator('#notfound-h2')).toHaveText('NotFound H2')
42 | })
43 |
at D:\a\core\core\e2e\tests\router\navigate-by-router.spec.ts:40:22
|
[chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly:
e2e\tests\router\navigate-by-router.spec.ts#L16
1) [chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly âââ
Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)
Locator: locator(':root')
Expected string: "http://127.0.0.1:9080/e2e/404.html"
Received string: "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
Call log:
- expect.toHaveURL with timeout 5000ms
- waiting for locator(':root')
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
14 | test('should navigate to 404 page correctly', async ({ page }) => {
15 | await page.locator('#not-found').click()
> 16 | await expect(page).toHaveURL(`${BASE}404.html`)
| ^
17 | await expect(page.locator('#notfound-h2')).toHaveText('NotFound H2')
18 | })
19 |
at D:\a\core\core\e2e\tests\router\navigate-by-router.spec.ts:16:22
|
[chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query:
e2e\tests\router\navigate-by-router.spec.ts#L40
2) [chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query ââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)
Locator: locator(':root')
Expected string: "http://127.0.0.1:9080/e2e/404.html#404?notFound=true"
Received string: "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
Call log:
- expect.toHaveURL with timeout 5000ms
- waiting for locator(':root')
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
- locator resolved to <html lang="en-US">âŚ</html>
- unexpected value "http://127.0.0.1:9080/e2e/router/navigate-by-router.html"
38 | test('should preserve hash and query', async ({ page }) => {
39 | await page.locator('#not-found-with-hash-and-query').click()
> 40 | await expect(page).toHaveURL(`${BASE}404.html#404?notFound=true`)
| ^
41 | await expect(page.locator('#notfound-h2')).toHaveText('NotFound H2')
42 | })
43 |
at D:\a\core\core\e2e\tests\router\navigate-by-router.spec.ts:40:22
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /home/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /home/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /home/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e/tests/client-config/non-default-export.spec.ts#L7
1) [chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at /Users/runner/work/core/core/e2e/tests/client-config/non-default-export.spec.ts:7:53
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly:
e2e/tests/client-config/root-components.spec.ts#L6
2) [chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at /Users/runner/work/core/core/e2e/tests/client-config/root-components.spec.ts:6:62
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly:
e2e/tests/components/route-link.spec.ts#L52
3) [chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:52:7
|
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly:
e2e/tests/components/route-link.spec.ts#L67
4) [chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at /Users/runner/work/core/core/e2e/tests/components/route-link.spec.ts:67:7
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly:
e2e\tests\components\route-link.spec.ts#L67
4) [chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:67:7
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly:
e2e\tests\components\route-link.spec.ts#L67
4) [chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:67:7
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export:
e2e\tests\client-config\non-default-export.spec.ts#L7
1) [chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveCSS(expected)
Locator: locator('#non-default-export')
Expected string: "123px"
Received: <element(s) not found>
Call log:
- expect.toHaveCSS with timeout 5000ms
- waiting for locator('#non-default-export')
5 | }) => {
6 | await page.goto('client-config/non-default-export.html')
> 7 | await expect(page.locator('#non-default-export')).toHaveCSS(
| ^
8 | 'font-size',
9 | '123px',
10 | )
at D:\a\core\core\e2e\tests\client-config\non-default-export.spec.ts:7:53
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly:
e2e\tests\client-config\root-components.spec.ts#L6
2) [chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: locator('.root-component-from-theme p')
Expected string: "root component from theme"
Received: <element(s) not found>
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('.root-component-from-theme p')
4 | await page.goto('', { waitUntil: 'domcontentloaded' })
5 |
> 6 | await expect(page.locator('.root-component-from-theme p')).toHaveText(
| ^
7 | 'root component from theme',
8 | )
9 | await expect(page.locator('.root-component-from-user-config p')).toHaveText(
at D:\a\core\core\e2e\tests\client-config\root-components.spec.ts:6:62
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #1 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly:
e2e\tests\components\route-link.spec.ts#L52
3) [chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly âââââââ
Retry #2 âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #active + ul > li a').first()
Expected string: "route-link route-link-active"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #active + ul > li a').first()
50 | await expect(
51 | page.locator('.e2e-theme-content #active + ul > li a').nth(index),
> 52 | ).toHaveAttribute('class', className)
| ^
53 | }
54 | })
55 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:52:7
|
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly:
e2e\tests\components\route-link.spec.ts#L67
4) [chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly âââââââââââââââ
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.e2e-theme-content #class + ul > li a').first()
Expected string: "route-link custom-class"
Received: <element(s) not found>
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.e2e-theme-content #class + ul > li a').first()
65 | await expect(
66 | page.locator('.e2e-theme-content #class + ul > li a').nth(index),
> 67 | ).toHaveAttribute('class', className)
| ^
68 | }
69 | })
70 |
at D:\a\core\core\e2e\tests\components\route-link.spec.ts:67:7
|
e2e result
Process completed with exit code 1.
|
đ Playwright Run Summary
71 passed (19.4s)
|
đ Playwright Run Summary
67 passed (15.5s)
|
đ Playwright Run Summary
71 passed (21.0s)
|
đ Playwright Run Summary
67 passed (15.7s)
|
đ Playwright Run Summary
71 passed (19.7s)
|
đ Playwright Run Summary
67 passed (15.6s)
|
đ Playwright Run Summary
1 flaky
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
70 passed (27.9s)
|
đ Playwright Run Summary
67 passed (15.3s)
|
đ Playwright Run Summary
71 passed (20.1s)
|
đ Playwright Run Summary
67 passed (16.8s)
|
đ Playwright Run Summary
71 passed (20.5s)
|
đ Playwright Run Summary
67 passed (16.6s)
|
đ Playwright Run Summary
71 passed (20.3s)
|
đ Playwright Run Summary
67 passed (15.2s)
|
đ Playwright Run Summary
71 passed (19.6s)
|
đ Playwright Run Summary
67 passed (15.2s)
|
đ Playwright Run Summary
71 passed (20.0s)
|
đ Playwright Run Summary
67 passed (16.6s)
|
đ Playwright Run Summary
1 flaky
[chromium] âş imports/conditional-exports.spec.ts:4:1 âş should load different files correctly âââ
70 passed (27.0s)
|
đ Playwright Run Summary
67 passed (16.5s)
|
đ Playwright Run Summary
71 passed (24.2s)
|
đ Playwright Run Summary
67 passed (14.9s)
|
đ Playwright Run Summary
1 flaky
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
70 passed (29.7s)
|
đ Playwright Run Summary
67 passed (17.2s)
|
đ Playwright Run Summary
71 passed (26.8s)
|
đ Playwright Run Summary
67 passed (21.5s)
|
đ Playwright Run Summary
71 passed (28.4s)
|
đ Playwright Run Summary
67 passed (21.5s)
|
đ Playwright Run Summary
71 passed (29.3s)
|
đ Playwright Run Summary
67 passed (22.1s)
|
đ Playwright Run Summary
71 passed (27.6s)
|
đ Playwright Run Summary
67 passed (21.9s)
|
đ Playwright Run Summary
71 passed (32.7s)
|
đ Playwright Run Summary
1 flaky
[chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query âââââââââââ
66 passed (23.6s)
|
đ Playwright Run Summary
71 passed (27.4s)
|
đ Playwright Run Summary
2 flaky
[chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router\navigate-by-router.spec.ts:38:1 âş should preserve hash and query âââââââââââ
65 passed (29.8s)
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config/non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config/root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components/route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components/route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components/route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components/route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components/route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components/route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports/style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports/style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown/anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown/images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown/links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router/navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router/navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router/navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router/navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router/navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router/navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router/navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router/navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router/navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router/navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router/navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components\route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components\route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components\route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components\route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports\style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports\style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown\anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown\images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown\links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router\navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router\navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router\navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router\navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router\navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components\route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components\route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components\route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components\route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports\style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports\style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown\anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown\images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown\links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router\navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router\navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router\navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router\navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router\navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|
đ Playwright Run Summary
61 failed
[chromium] âş client-config\non-default-export.spec.ts:3:1 âş should apply styles correctly if the client config file does not have default export
[chromium] âş client-config\root-components.spec.ts:3:1 âş should render root components correctly
[chromium] âş components\route-link.spec.ts:37:1 âş should render active status correctly ââââââââ
[chromium] âş components\route-link.spec.ts:56:1 âş should render class correctly ââââââââââââââââ
[chromium] âş components\route-link.spec.ts:71:1 âş should render attributes correctly âââââââââââ
[chromium] âş components\route-link.spec.ts:114:1 âş should render slots correctly âââââââââââââââ
[chromium] âş components\route-link.spec.ts:145:1 âş should render hash and query correctly ââââââ
[chromium] âş components\route-link.spec.ts:174:1 âş should render relative links correctly ââââââ
[chromium] âş hmr.spec.ts:57:3 âş should update content correctly ââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:67:3 âş should update frontmatter correctly ââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:79:3 âş should update title correctly ââââââââââââââââââââââââââââââââââ
[chromium] âş hmr.spec.ts:96:3 âş should update content and frontmatter and title correctly after navigation
[chromium] âş imports\style-exports.spec.ts:3:1 âş should load dynamic imported styles correctly â
[chromium] âş imports\style-exports.spec.ts:12:1 âş should load static imported styles correctly â
[chromium] âş layouts.spec.ts:3:1 âş CustomLayout ââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:10:1 âş Layout âââââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş layouts.spec.ts:17:1 âş NotFound âââââââââââââââââââââââââââââââââââââââââââââââââââ
[chromium] âş markdown\anchors.spec.ts:3:1 âş should render anchors and navigate correctly âââââââ
[chromium] âş markdown\images.spec.ts:3:1 âş should render images correctly ââââââââââââââââââââââ
[chromium] âş markdown\links.spec.ts:4:1 âş should render links and navigate between pages correctly
[chromium] âş page-data.spec.ts:4:3 âş title âş should use title from frontmatter âââââââââââââââââ
[chromium] âş page-data.spec.ts:9:3 âş title âş should use title from h1 ââââââââââââââââââââââââââ
[chromium] âş page-data.spec.ts:16:3 âş frontmatter âş should set frontmatter correctly âââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:9:3 âş markdown links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:15:3 âş markdown links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:21:3 âş markdown links âş should preserve query âââââ
[chromium] âş router\navigate-by-link.spec.ts:27:3 âş markdown links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:33:3 âş markdown links âş should preserve hash ââââââ
[chromium] âş router\navigate-by-link.spec.ts:39:3 âş markdown links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:47:3 âş html links âş should navigate to home correctly
[chromium] âş router\navigate-by-link.spec.ts:53:3 âş html links âş should navigate to 404 page correctly
[chromium] âş router\navigate-by-link.spec.ts:59:3 âş html links âş should preserve query âââââââââ
[chromium] âş router\navigate-by-link.spec.ts:65:3 âş html links âş should preserve query and hash
[chromium] âş router\navigate-by-link.spec.ts:71:3 âş html links âş should preserve hash ââââââââââ
[chromium] âş router\navigate-by-link.spec.ts:77:3 âş html links âş should preserve hash and query
[chromium] âş router\navigate-by-link.spec.ts:85:3 âş markdown links with html paths âş should navigate to home correctly
[chromium] âş router\navigate-by-router.spec.ts:8:1 âş should navigate to home correctly âââââââââ
[chromium] âş router\navigate-by-router.spec.ts:14:1 âş should navigate to 404 page correctly ââââ
[chromium] âş router\navigate-by-router.spec.ts:20:1 âş should preserve query ââââââââââââââââââââ
[chromium] âş router
|