memos/web/e2e-tests/001-setup.spec.ts

14 lines
288 B
TypeScript
Raw Normal View History

import { test } from "@playwright/test";
import { signUp } from "./utils";
test.use({
locale: "en-US",
timezoneId: "Europe/Berlin",
});
test.describe("Sign up a host account", async () => {
test("Sign Up", async ({ page }) => {
await signUp(page, "admin", "admin");
});
});