feat(e2e): use fixtures in smoke test for auto axe scan

This commit is contained in:
cartsnitch-engineer[bot]
2026-03-31 02:26:56 +00:00
committed by GitHub
parent 8c9cd30ebc
commit e83d9113ee
+3 -3
View File
@@ -1,6 +1,6 @@
import { test, expect } from '@playwright/test';
import { test, expect } from "./fixtures";
test('app loads', async ({ page }) => {
await page.goto('/');
test("app loads", async ({ page }) => {
await page.goto("/");
await expect(page).toHaveTitle(/CartSnitch/);
});