Files
mutiny-web/e2e/load.spec.ts
Paul Miller 33b8190a2d new home
2024-03-25 15:04:39 -05:00

12 lines
242 B
TypeScript

import { test } from "@playwright/test";
import { loadHome } from "./utils";
test.beforeEach(async ({ page }) => {
await page.goto("http://localhost:3420/");
});
test("initial load", async ({ page }) => {
await loadHome(page);
});