mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
2 years ago
|
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");
|
||
|
});
|
||
|
});
|