Skip to content

Commit

Permalink
test(e2e): improve auto-link component test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Oct 10, 2024
1 parent e38fc11 commit b8294a1
Showing 1 changed file with 34 additions and 1 deletion.
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.beforeEach(async ({ page }) => {
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 (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, 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 (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, 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, 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 (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 (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, 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

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
}
})

Expand Down

0 comments on commit b8294a1

Please sign in to comment.