7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('has title', async ({ page }) => {
|
|
await page.goto('/');
|
|
await expect(page).toHaveTitle(/HarborForge/);
|
|
});
|