secajs/tests/app.spec.js

9 lines
231 B
JavaScript
Raw Normal View History

2025-02-14 14:59:46 +01:00
const { test, expect } = require('@playwright/test');
2025-02-14 15:07:29 +01:00
test('Home page has correct title', async ({ page }) => {
await page.goto('http://localhost/');
const title = await page.title();
expect(title).toBe('Hello World');
2025-02-14 14:59:46 +01:00
});