-
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.47 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.47 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": "local-ecash-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:interval": "node scripts/run-tests-interval.js",
"test:release": "playwright test tests/local/main-flow/seller-release-local.spec.ts --project=chromium --headed",
"test:release-with-deposit": "playwright test tests/local/main-flow/seller-release-have-buyer-deposit-local.spec.ts --project=chromium --headed",
"test:return": "playwright test tests/local/main-flow/return-flow-local.spec.ts --project=chromium --headed",
"test:return-with-deposit": "playwright test tests/local/main-flow/return-flow-buyer-deposit-local.spec.ts --project=chromium --headed",
"test:dispute": "playwright test tests/local/main-flow/dispute-flow-local.spec.ts --project=chromium --headed",
"test:dispute-with-deposit": "playwright test tests/local/main-flow/dispute-flow-buyer-deposit-local.spec.ts --project=chromium --headed",
"test:main-flows": "playwright test tests/local/main-flow/ --project=chromium",
"codegen": "playwright codegen"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.21",
"dotenv": "^16.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/node-fetch": "^2.6.12",
"node-fetch": "^3.3.2"
}
}