mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2025-11-22 16:31:04 +01:00
14 lines
505 B
TypeScript
14 lines
505 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
import { goToHome, clearBrowserCache } from './utils/app.utils';
|
|
|
|
test.describe('Zonemaster test FR08 - [Presence of a default fallback language - English]', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await goToHome(page);
|
|
await clearBrowserCache(page);
|
|
});
|
|
|
|
test('should have a fallback language - English', async ({ page }) => {
|
|
await expect(page.locator('input[name="domain"]')).toHaveAttribute('placeholder', 'Domain');
|
|
});
|
|
});
|