1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 15:29:34 +01:00

init e2e ui tests base skeleton

This commit is contained in:
Janosch 2026-03-27 09:41:35 +01:00
parent 83c7321c8f
commit c84629cc4e
16 changed files with 1219 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
"name": "@effigenix/e2e",
"version": "0.1.0",
"private": true,
"description": "Playwright E2E-Tests für Effigenix ERP (Web UI + API)",
"scripts": {
"test": "playwright test",
"test:api": "playwright test --project=api",
"test:web": "playwright test --project=web-chromium",
"report": "playwright show-report playwright-report"
},
"devDependencies": {
"@playwright/test": "^1.51.0",
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
}
}