-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "shopfront-e2e-exercise",
"version": "0.0.1",
"description": "Demostrating process flow of initialising and executing end-to-end automated tests for a shopfront application. Issues/PRs included.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"dependencies": {
"dotenv": "^16.3.1",
"playwright-core": "^1.36.1"
},
"devDependencies": {
"@playwright/test": "^1.36.1"
},
"scripts": {
"debug-test": "npx playwright test --debug",
"test:ci": "PLAYWRIGHT_JUNIT_OUTPUT_NAME=reports/report.xml npx playwright test tests/e2e --reporter=junit",
"test:record": "npx playwright codegen",
"test:api": "npx playwright test tests/api/ --reporter=list",
"test:e2e": "npx playwright test tests/e2e/",
"test:all": "npx playwright test tests/",
"show-report": "npx playwright show-report",
"codespace": "npx playwright test --ui-port=8080 --ui-host=0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tooniez/shopfront-e2e-exercise.git"
},
"author": "tooniez",
"license": "MIT",
"bugs": {
"url": "https://github.com/tooniez/shopfront-e2e-exercise/issues"
},
"homepage": "https://github.com/tooniez/shopfront-e2e-exercise#readme"
}