Skip to content
Merged
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
2 changes: 2 additions & 0 deletions e2e-tests/tests/ui/example-shell.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { test, expect } from '@playwright/test';
import { waitForIdentityHydration } from '../support/live-authority.js';

test.describe('passkey-first example shell', () => {
test('navigates from the landing page to the accessible identity UI', async ({ page }) => {
Expand Down Expand Up @@ -44,6 +45,7 @@ test.describe('passkey-first example shell', () => {

test('keeps sign-in keyboard reachable while unnamed registration is disabled', async ({ page }) => {
await page.goto('/identity');
await waitForIdentityHydration(page);

await page.getByRole('textbox', { name: 'Passkey name', exact: true }).focus();
await page.keyboard.press('Tab');
Expand Down
Loading