Initial commit
This commit is contained in:
23
test/e2e/login.test.ts
Normal file
23
test/e2e/login.test.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { describe, it, expect } from 'vitest'
|
||||
import { setup, createPage } from '@nuxt/test-utils/e2e'
|
||||
|
||||
describe('login page', async () => {
|
||||
await setup({
|
||||
host: 'http://localhost:3000',
|
||||
browser: true
|
||||
})
|
||||
|
||||
it('shows the email input and OAuth provider buttons', { timeout: 30_000 }, async () => {
|
||||
// createPage() without a path skips the internal waitForHydration call
|
||||
// (which hangs on SPAs because window.useNuxtApp is not exposed)
|
||||
const page = await createPage()
|
||||
await page.goto('http://localhost:3000/login', { waitUntil: 'networkidle' })
|
||||
|
||||
// Email field rendered by UAuthForm
|
||||
expect(await page.locator('input[type="text"]').first().isVisible()).toBe(true)
|
||||
|
||||
// OAuth buttons for Google and Apple
|
||||
expect(await page.getByText('Google').isVisible()).toBe(true)
|
||||
expect(await page.getByText('Apple').isVisible()).toBe(true)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user