Files
resolutionflow/frontend/e2e/auth.spec.ts
2026-03-16 02:29:22 -04:00

14 lines
411 B
TypeScript

import { expect, test } from '@playwright/test'
import { signIn } from './helpers/auth'
test.use({ storageState: { cookies: [], origins: [] } })
test.describe('authentication smoke tests', () => {
test('team admin can sign in through the login form', async ({ page }) => {
await signIn(page)
await expect(page).toHaveURL(/\/$/)
await expect(page.getByTestId('app-shell')).toBeVisible()
})
})