Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(e2e): improve auto-link component test case #1616

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion e2e/tests/components/auto-link.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,41 @@
test('should render route-link correctly', async ({ page }) => {
const locator = page.locator('.e2e-theme-content #route-link a')

for (const el of await locator.all()) {
const count = await locator.count()

const results = [
'/',
'/',
'/',
'/not-existent.html',
'/not-existent.html',
'/not-existent.html',
'/routes/non-ascii-paths/中文目录名/中文文件名.html',
'/routes/non-ascii-paths/中文目录名/中文文件名.html',
'/routes/non-ascii-paths/中文目录名/中文文件名.html',
'/#hash',
'/?query',
'/?query#hash',
'#hash',
'?query',
'?query#hash',
'route-link.html',
'route-link.html',
'route-link.html',
'not-existent.html',
'not-existent.html',
'not-existent.html',
'../',
'../',
'../404.html',
'../404.html',
]

for (let index = 0; index < count; index++) {
const el = locator.nth(index)

await expect(el).toHaveAttribute('class', /route-link/)
await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE))

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 18, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 20, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /home/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, webpack)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22

Check failure on line 45 in e2e/tests/components/auto-link.spec.ts

View workflow job for this annotation

GitHub Actions / e2e (macos-latest, 22, vite)

[chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly

1) [chromium] › components/auto-link.spec.ts:8:1 › should render route-link correctly ──────────── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected) Locator: locator('.e2e-theme-content #route-link a').nth(3) Expected string: "/" Received string: "/non-existent.html" Call log: - expect.toHaveAttribute with timeout 5000ms - waiting for locator('.e2e-theme-content #route-link a').nth(3) - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" - locator resolved to <a aria-label="text" href="/non-existent.html" class="route-link auto-link">…</a> - unexpected value "/non-existent.html" 43 | 44 | await expect(el).toHaveAttribute('class', /route-link/) > 45 | await expect(el).toHaveAttribute('href', results[0].replace(/^\//, BASE)) | ^ 46 | } 47 | }) 48 | at /Users/runner/work/core/core/e2e/tests/components/auto-link.spec.ts:45:22
}
})

Expand Down
Loading