zonemaster-gui/e2e/FR04.e2e-spec.ts
Gaël Berthaud-Müller 7bf74c5561 migrate tests 01 to 21
2022-02-14 13:15:18 +01:00

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');
});
});