Add repo Playwright smoke setup

This commit is contained in:
2026-04-03 00:39:42 +02:00
parent 48439fd21d
commit 9b9927084b
8 changed files with 209 additions and 1 deletions

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "rpgroller",
"private": true,
"scripts": {
"e2e": "playwright test",
"e2e:smoke": "playwright test tests/e2e/smoke.spec.js --reporter=line",
"e2e:install": "playwright install chromium"
},
"devDependencies": {
"@playwright/test": "^1.59.1"
}
}