1 import { test, expect } from './shared.js';
3 test.describe('About Page', () => {
6 test.beforeAll(async ({ browser }) => {
7 page = await browser.newPage();
8 await page.goto('/about.html');
11 test.afterAll(async () => {
15 test('should contain Nominatim description', async () => {
16 await page.locator('#about-help').waitFor();
17 await expect(page.locator('#about-help')).toContainText(
18 'Nominatim is a search engine'