Files
reiverr/tests/test.ts
Aleksi Lassila e04a054999 Initial commit
2023-06-13 13:08:28 +03:00

7 lines
223 B
TypeScript

import { expect, test } from '@playwright/test';
test('about page has expected h1', async ({ page }) => {
await page.goto('/about');
await expect(page.getByRole('heading', { name: 'About this app' })).toBeVisible();
});