feat: install playwright

This commit is contained in:
ISA
2025-08-20 11:30:40 +02:00
parent 7c525c11a1
commit 680c643ea5
7 changed files with 78 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
// example.spec.js
const { test, expect } = require("@playwright/test");
test("simple test", async ({ page }) => {
await page.goto("https://playwright.dev");
await expect(page).toHaveTitle(/Playwright/);
});