Files

7 lines
190 B
TypeScript
Raw Permalink Normal View History

import { test, expect } from '@playwright/test';
test('homepage loads successfully', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/WorkClub Manager/);
});