mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2025-11-22 16:31:04 +01:00
14 lines
421 B
TypeScript
14 lines
421 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
import { goToHome, setLang } from './utils/app.utils';
|
|
|
|
test.describe('Zonemaster test FR04 - Valid title for the Web interface', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await goToHome(page);
|
|
await setLang(page, 'en');
|
|
});
|
|
|
|
test('should have right title - Zonemaster', async ({ page }) => {
|
|
await expect(page).toHaveTitle('Zonemaster');
|
|
});
|
|
});
|