Skip to content

Commit

Permalink
test: very basic overview page test with playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurD1 committed Feb 13, 2024
1 parent 2e3a854 commit 608aad8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/tests/overviewPage.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test, expect } from "@playwright/test"

test("loads the Overview page", async ({ page }) => {
await page.goto("/")
const title = await page.title()
expect(title).toBe("Harp UI")
})

0 comments on commit 608aad8

Please sign in to comment.