zonemaster-gui/e2e/FR01.e2e-spec.ts
Gaël Berthaud-Müller 383fee281a fix e2e tests
2022-11-14 17:10:35 +01:00

15 lines
573 B
TypeScript

const { test, expect } = require('@playwright/test');
import { goToHome, setLang } from './utils/app.utils';
test.describe('Zonemaster test FR01 - [A Home button that sends the user to the default simple view]', () => {
test.beforeEach(async ({ page }) => {
await goToHome(page);
await setLang(page, 'en');
});
test('should have a link to go to home page', async ({ page }) => {
await expect(page.locator('a.navbar-brand')).toHaveAttribute('href', '/en/');
await expect(page.locator('a.navbar-brand')).toHaveAttribute('routerLink', '/');
});
});