mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2025-06-25 16:43:30 +02:00
14 lines
426 B
TypeScript
14 lines
426 B
TypeScript
const { test, expect } = require('@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');
|
|
});
|
|
});
|