-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.18 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": "automationexercise_playwright_typescript",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/srmiljus/Automation_Exercise_PW_TS",
"author": "Srdjan Miljus",
"devDependencies": {
"@playwright/test": "^1.54.1",
"@types/node": "^24.0.15",
"allure-commandline": "^2.34.1",
"allure-playwright": "^3.3.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@faker-js/faker": "^9.9.0",
"dotenv": "^17.2.1"
},
"scripts": {
"test:run:ui": "playwright test --ui",
"test:run:chrome:headless": "playwright test --project chromium",
"test:run:firefox:headless": "playwright test --project firefox",
"test:run:webkit:headless": "playwright test --project webkit",
"test:run:all:headless": "playwright test",
"test:open:chromium": "playwright test --project chromium --headed",
"test:open:firefox": "playwright test --project firefox --headed",
"test:open:webkit": "playwright test --project webkit --headed",
"test:open:all": "playwright test --headed",
"test:allure": "playwright test --reporter=line,allure-playwright",
"allure:generate": "allure generate allure-results --clean -o allure-report"
}
}