Merge main into feat/e2e-journey-tests, resolve conflict in smoke.spec.ts (keep single quotes)

This commit is contained in:
Barcode Betty
2026-03-31 17:50:19 +00:00
2 changed files with 3 additions and 10 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
import { test, expect } from "./fixtures";
import { test, expect } from './fixtures';
test("app loads", async ({ page }) => {
await page.goto("/");
await expect(page).toHaveTitle(/CartSnitch/);
// Unauthenticated users are redirected to login
await expect(page).toHaveURL(/\/login/);
});