Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksiAhtiainen committed Oct 21, 2024
1 parent 24143ed commit 300af70
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { test, expect } from "@playwright/test"

test.use({
ignoreHTTPSErrors: true,
})

test("Luovutuspalvelu healthcheck page opens", async ({ page }) => {
await page.goto(
"https://localhost:7022/koski-luovutuspalvelu/healthcheck/proxy",
)
await expect(page.getByText("ok")).toBeVisible()
})

0 comments on commit 300af70

Please sign in to comment.