-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.23 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
{
"name": "playwright-selenium-comparison",
"version": "1.0.0",
"description": "Project created to compare Playwright and Selenium 4 for automation testing",
"main": "index.js",
"scripts": {
"test:selenium": "jest",
"test:pw": "npx playwright test tests/playwright",
"test:pw:headed": "npx playwright test tests/playwright --headed",
"test:pw:debug": "npx playwright test tests/playwright --debug",
"test:pw:record-trace": "npx playwright test tests/playwright --trace on",
"test:pw:ui": "npx playwright test --ui tests/playwright",
"pw:install": "npx playwright install",
"pw:report": "npx playwright show-report",
"compile": "tsc",
"compile:watch": "tsc -w"
},
"author": "Kamil Kukiełka",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@playwright/test": "^1.44.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/selenium-webdriver": "^4.1.15",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"playwright": "^1.44.1",
"selenium-webdriver": "^4.14.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"jest-html-reporter": "^3.10.2",
"ts-node": "^10.9.1"
}
}