porchlight/tests/e2e/package.json
Johan Lundberg 174c6c001e
feat: migrate e2e test infrastructure to @playwright/test
Replace direct playwright dependency with @playwright/test and add
playwright.config.js for centralized test configuration. Update run.sh
to invoke 'npx playwright test' instead of running test files with node.
2026-02-18 11:10:23 +01:00

12 lines
271 B
JSON

{
"private": true,
"name": "porchlight-e2e",
"description": "End-to-end browser tests for Porchlight",
"scripts": {
"test": "npx playwright test",
"setup": "npx playwright install chromium"
},
"dependencies": {
"@playwright/test": "^1.52.0"
}
}