-
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) · 925 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 925 Bytes
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": "webapp-testing-framework",
"version": "1.0.0",
"description": "Modern testing framework built with Playwright for end-to-end testing of web applications",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:api": "playwright test tests/api",
"test:visual": "playwright test tests/visual",
"test:mobile": "playwright test tests/mobile",
"install:browsers": "playwright install"
},
"keywords": [
"playwright",
"testing",
"e2e",
"qa",
"automation"
],
"author": "Donald Machon",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}