mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
|
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");
|
||
|
});
|
||
|
});
|