Notes/apps/client-e2e/src/example.spec.ts
2025-04-22 22:06:10 +03:00

9 lines
227 B
TypeScript

import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('/');
// Expect h1 to contain a substring.
expect(await page.locator('h1').innerText()).toContain('Welcome');
});