mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
12 lines
242 B
TypeScript
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);
|
|
});
|