-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nilgiri",
"version": "0.0.0",
"description": "A hybrid automation framework that seamlessly integrates Cucumber BDD approach with Playwright powerful browser automation capabilities, enabling expressive, behavior-driven test scenarios for robust end-to-end testing in web applications.",
"scripts": {
"nilgiriDependencyInstall": " npm i && npm install -D @playwright/test && npx playwright install",
"local": "npx playwright test",
"cucumberRun": "cucumber-js test || true",
"posttest": "ts-node generateReport.ts",
"automation": "npm run nilgiriDependencyInstall && npm run local && npm run cucumberRun && npm run posttest "
},
"dependencies": {
"monocart": "^1.1.0",
"playwright": "^*",
"@playwright/test": "^1.32.2",
"nilgirihub": "*",
"dotenv": "^16.0.3",
"@types/node": "^20.9.2",
"ts-node": "^10.9.1",
"@cucumber/cucumber": "^10.0.1",
"multiple-cucumber-html-reporter": "*"
}
}