zonemaster-gui/e2e/FR01.e2e-spec.ts
Tobias Bleckert a04eb06251 More test fixes
2025-05-13 11:30:01 +02:00

14 lines
475 B
TypeScript

import { test, expect } from '@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.zm-logo')).toHaveAttribute('href', '/');
});
});