21 lines
557 B
JSON
21 lines
557 B
JSON
{
|
|
"name": "novalon-uat-tests",
|
|
"version": "1.0.0",
|
|
"description": "UAT test suite for Novalon Management System",
|
|
"scripts": {
|
|
"test": "playwright test",
|
|
"test:headed": "playwright test --headed",
|
|
"test:debug": "playwright test --debug",
|
|
"test:report": "playwright show-report",
|
|
"test:quality-gate": "node quality-gate.js",
|
|
"install-browsers": "playwright install --with-deps"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.40.0",
|
|
"@types/dotenv": "^6.1.1"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^17.3.1"
|
|
}
|
|
}
|