This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/e2e-playwright/tests/hello-world.spec.js
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

6 lines
228 B
JavaScript

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!");
});