blob: af64ad3345524215770fb236ec3c776a97e4ef70 (
plain) (
blame)
1
2
3
4
5
6
|
import { expect, test } from '@playwright/test';
test('index page has expected h1', async ({ page }) => {
await page.goto('/');
expect(await page.textContent('h1')).toBe("Welcome to Greatoffice");
});
|