7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('homepage has expected title', async ({ page }) => {
|
|
await page.goto('https://example.com');
|
|
await expect(page).toHaveTitle(/Example Domain/);
|
|
});
|