zonemaster-gui/e2e/FR01.e2e-spec.ts
2022-06-10 13:27:07 +02:00

15 lines
570 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', '/');
await expect(page.locator('a.navbar-brand')).toHaveAttribute('routerLink', '/');
});
});