-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (39 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (39 loc) · 1.25 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
42
43
44
{
"name": "e2e-observability-framework",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:debug": "npx playwright test --headed --debug",
"test:api": "npx playwright test --grep @api",
"test:smoke": "npx playwright test --grep @smoke",
"test:regression": "npx playwright test --grep @regression",
"clean:reports": "rimraf test-results reports/json-reports reports/playwright-reports/index.html"
,
"clean:logs": "rimraf reports/logs/playwright.jsonl",
"test:clean": "npm run clean:reports && npm run clean:logs && npm run test",
"test:chromium": "npx playwright test --project=Chromium",
"test:firefox": "npx playwright test --project=Firefox",
"test:webkit": "npx playwright test --project=WebKit",
"start:metrics-server": "tsx src/utils/metrics-server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.2",
"eslint": "^9.25.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.3"
},
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"faker": "^6.6.6",
"prom-client": "^15.1.3"
}
}