21 lines
618 B
JSON
21 lines
618 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"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.47.0",
|
|
"@types/node": "^22.0.0",
|
|
"dotenv": "^16.4.0",
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|