-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.19 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
{
"name": "playwright-template-ui-api-testing",
"version": "1.0.0",
"description": "this is demo template for web and api testing basic",
"main": "index.js",
"type": "module",
"scripts": {
"test:e2e:local": "ENV=local npx playwright test --project=e2e_testing",
"test:api:local": "ENV=local npx playwright test --project=api_testing",
"test:all": "ENV=local npx playwright test",
"test:debug": "ENV=local npx playwright test --debug",
"test:ui": "ENV=local npx playwright test --ui",
"test:e2e:ci": "CI=true HEADLESS=true ENV=local npx playwright test --project=e2e_testing --workers=4",
"test:api:ci": "CI=true HEADLESS=true ENV=local npx playwright test --project=api_testing --workers=4",
"lint": "tsc --noEmit"
},
"keywords": [],
"author": "MyDuong",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@playwright/test": "^1.50.1",
"@types/node": "^22.10.2",
"allure-commandline": "^2.31.0",
"allure-playwright": "^3.0.5",
"dotenv": "^16.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {}
}