Files
app/e2e/smoke.spec.ts
T
2026-03-31 18:15:07 +00:00

9 lines
289 B
TypeScript

import { test, expect } from './fixtures';
test('app loads', async ({ page }) => {
await page.goto('/');
// Unauthenticated users are redirected to /login
await expect(page).toHaveURL(/\/login/);
await expect(page.getByRole('heading', { name: /CartSnitch/i })).toBeVisible();
});