-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "playwright-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"play:test": "npx playwright test",
"play:debug": "npx playwright test --debug",
"report": "npx playwright show-report",
"test-s": "npx playwright test -g @sorting",
"test-l": "npx playwright test -g @login",
"test-c": "npx playwright test -g @cart",
"test-sc": "npx playwright test -g @suncorplogin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darvinpatel/playwright-demo"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/darvinpatel/playwright-demo/issues"
},
"homepage": "https://github.com/darvinpatel/playwright-demo#readme",
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/faker": "^6.6.9",
"@types/jest": "^29.2.4",
"faker": "^5.5.3",
"jest": "29.3.1",
"ts-jest": "29.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testTimeout": 120000
},
"dependencies": {
"jest-cli": "^29.3.1"
}
}