mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2026-04-03 17:31:21 +02:00
14 lines
477 B
TypeScript
14 lines
477 B
TypeScript
const { test, expect } = require('@playwright/test');
|
|
|
|
import { goToHome, clearBrowserCache } from './utils/app.utils';
|
|
|
|
test.describe('Zonemaster test FR08 - [Presence of a default fallback language - English]', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await goToHome(page);
|
|
await clearBrowserCache(page);
|
|
});
|
|
|
|
test('should have a fallback language - English', async ({ page }) => {
|
|
await expect(page.locator('h1')).toHaveText('Domain name');
|
|
});
|
|
});
|