adds tests

This commit is contained in:
Christian Beutel
2025-01-21 14:37:52 +01:00
parent c40e01d56c
commit 7571f6e9b9
10 changed files with 66 additions and 6 deletions

View File

@@ -6,3 +6,10 @@ test('index page does not show error', async ({ page }) => {
await indexPage.goto()
await indexPage.hasNoError()
});
test('location search works', async ({ page }) => {
const indexPage = new IndexPage(page);
await indexPage.goto()
await indexPage.search()
});