first commit

This commit is contained in:
2026-05-22 11:46:43 +02:00
commit 2ebd8fb16b
29 changed files with 3356 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "pbx-autotest",
"version": "1.0.0",
"description": "QA Automation Test Suite — PBX & Core systems (Playwright + MCP)",
"scripts": {
"test": "playwright test",
"test:core": "playwright test tests/core/",
"test:pbx": "playwright test tests/pbx/",
"test:automated": "playwright test --grep-invert @manual",
"test:partial": "playwright test --grep @partial",
"test:report": "playwright show-report",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/node": "^22.0.0",
"dotenv": "^16.4.0",
"typescript": "^5.5.0"
}
}