30 lines
895 B
JSON
30 lines
895 B
JSON
{
|
|
"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",
|
|
"web": "node server/index.js",
|
|
"docker:up": "docker compose up -d --build",
|
|
"docker:down": "docker compose down",
|
|
"docker:logs": "docker compose logs -f autotest"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.47.0",
|
|
"@types/node": "^22.0.0",
|
|
"dotenv": "^16.4.0",
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|