-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "playwright_ui_automation_ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:smokesanity": "npx playwright test --grep \"@smoke|@sanity\" --grep-invert \"@regression\"",
"test:sanity": "npx playwright test --grep @sanity",
"test:smoke": "npx playwright test --grep @smoke",
"test:regression": "npx playwright test --grep @regression",
"test:regsmoke": "npx playwright test --grep \"@regression|@smoke\"",
"test:sanitysmoke": "npx playwright test --grep \"@sanity|@smoke\"",
"test": "npx playwright test",
"report:html": "node scripts/ReportGenerator.js",
"test-with-report": "npm run test && npm run report:html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"csv-parse": "^6.1.0",
"fs-extra": "^11.3.2"
},
"dependencies": {
"dotenv": "^17.2.3",
"mongodb": "^7.0.0",
"mysql2": "^3.15.3",
"pg": "^8.16.3"
}
}