-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.55 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.55 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-testkit",
"version": "1.0.0",
"description": "Production-ready Playwright TypeScript automation framework",
"main": "index.js",
"scripts": {
"test": "playwright test --config=config/playwright.config.ts",
"test:ui": "playwright test --config=config/playwright.config.ts --ui",
"test:debug": "playwright test --config=config/playwright.config.ts --debug",
"test:headed": "playwright test --config=config/playwright.config.ts --headed",
"test:chromium": "playwright test --config=config/playwright.config.ts --project=chromium",
"test:firefox": "playwright test --config=config/playwright.config.ts --project=firefox",
"test:webkit": "playwright test --config=config/playwright.config.ts --project=webkit",
"test:mobile": "playwright test --config=config/playwright.config.ts --project=mobile-chromium",
"test:api": "playwright test --config=config/playwright.config.ts tests/api",
"test:e2e": "playwright test --config=config/playwright.config.ts tests/e2e",
"report": "playwright show-report",
"allure:generate": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report",
"allure:serve": "allure serve allure-results"
},
"keywords": [
"playwright",
"typescript",
"test-automation",
"e2e",
"api-testing"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"allure-playwright": "^2.13.0",
"dotenv": "^16.3.1",
"typescript": "^5.3.3"
}
}