-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "automationchallengev2",
"version": "1.0.0",
"description": "This project is part of the Senior Automation Challenge v2 to automate functional test cases of OrangeHRM and API tests for Marvel Website",
"main": "index.js",
"scripts": {
"pretest": "rm -rf playwright-report/ && rm results.xml",
"test-all": "npm run pretest && npx playwright test",
"test-open-ui": "npx playwright test --ui",
"test-show-report": "npx playwright show-report",
"test-e2e": "npm run pretest && npx playwright test tests/e2e/",
"test-api": "npm run pretest && npx playwright test tests/api/",
"lint-check": "npx eslint",
"lint-fix": "npx eslint --fix"
},
"author": "Aleph Cruz",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@playwright/test": "^1.36.0",
"blueimp-md5": "^2.19.0",
"eslint": "^8.44.0",
"eslint-plugin-playwright": "^0.15.3",
"dotenv": "^16.3.1"
}
}