8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
const { test, expect } = require('@playwright/test');
|
|
|
|
test('Home page has correct title', async ({ page }) => {
|
|
await page.goto('http://localhost/');
|
|
const title = await page.title();
|
|
|
|
expect(title).toBe('Hello World');
|
|
});
|