-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.42 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.42 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "qa-automation-automationexercise",
"version": "2.6.3",
"description": "QA automation project showcasing UI, API, and visual tests for AutomationExercise. Integrated with Docker, Allure, and CI/CD pipelines.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npx playwright test",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"test:auth": "npx playwright test --grep @AUTH",
"test:product": "npx playwright test --grep @PRODUCT",
"test:cart": "npx playwright test --grep @CART",
"test:checkout": "npx playwright test --grep @CHECKOUT",
"test:contact": "npx playwright test --grep @CONTACT",
"test:api": "npx playwright test --grep @API",
"test:allure": "rimraf allure-results && npx playwright test && npx allure generate allure-results --clean -o allure-report && npx allure open allure-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/destrutoyt/qa-automation-automationexercise.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/destrutoyt/qa-automation-automationexercise/issues"
},
"homepage": "https://github.com/destrutoyt/qa-automation-automationexercise#readme",
"devDependencies": {
"@playwright/test": "^1.54.2",
"@types/node": "^24.2.0",
"allure-playwright": "^3.3.3",
"rimraf": "^6.0.1"
},
"dependencies": {
"prettier": "^3.6.2"
}
}