-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 KB
/
package.json
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
39
40
41
{
"name": "starter-playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf allure-results && rimraf allure-report && rimraf test-results && rimraf playwright-report && rimraf junit-results",
"play-report": "npx playwright show-report",
"allure-report": "allure generate ./allure-results --clean",
"open-report": "npm run allure-report && allure open ./allure-report",
"firefox": "npm run clean && npx playwright test --project=firefox",
"chromium": "npx playwright test --project=chromium",
"webkit": "npx playwright test --project=webkit",
"test": "npm run clean && npx playwright test --project=chromium",
"test-head": "npm run clean && npx playwright test --headed",
"reinstall": "npx playwright install",
"install-deps": "npx playwright install-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlyautomatiza/starter-playwright.git"
},
"keywords": [
"playwright",
"playwright-test",
"allure report",
"web test automation"
],
"author": "DreamReal",
"license": "CC0",
"devDependencies": {
"@playwright/test": "^1.30.0",
"allure-commandline": "^2.20.1",
"allure-playwright": "^2.0.0-beta.24",
"playwright": "^1.30.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"rimraf": "^4.1.2"
}
}