zonemaster-gui/e2e/FR04.e2e-spec.ts
2022-06-10 13:27:07 +02: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');
});
});