First commit

This commit is contained in:
AndrewTrieu
2022-12-27 19:38:34 +02:00
commit 08128374c1
25 changed files with 523 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
const { test, expect } = require("@playwright/test");
test("Server responds with the text 'Hello world!'", async ({ page }) => {
const response = await page.goto("/");
expect(await response.text()).toBe("Hello world!");
});