12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('homepage has correct title and content', async ({ page }) => {
|
|
await page.goto('/');
|
|
|
|
// Wait for the redirect to /darmasaba
|
|
await page.waitForURL('/darmasaba');
|
|
|
|
// Check for the main heading
|
|
await expect(page.getByText('DARMASABA', { exact: true })).toBeVisible();
|
|
});
|