Files
kontextwerk/playwright/example.test.js
2025-10-02 08:54:03 +02:00

8 lines
219 B
JavaScript

const { test, expect } = require("@playwright/test")
test("basic test", async ({ page }) => {
await page.goto("https://example.com")
const title = await page.title()
expect(title).toBe("Example Domain")
})