actually check something

This commit is contained in:
counterweight 2025-02-14 15:07:29 +01:00
parent 498edcb215
commit e725dce831
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -1,6 +1,8 @@
const { test, expect } = require('@playwright/test');
test('Home page has correct title', async () => {
const isTrue = true;
expect(isTrue).toBe(true);
test('Home page has correct title', async ({ page }) => {
await page.goto('http://localhost/');
const title = await page.title();
expect(title).toBe('Hello World');
});