7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
|
|
import { test, expect } from '@playwright/test';
|
||
|
|
|
||
|
|
test('home loads', async ({ page }) => {
|
||
|
|
await page.goto('/');
|
||
|
|
await expect(page.locator('h1')).toContainText('Kochwas');
|
||
|
|
});
|