-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.21 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.21 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
{
"name": "@trustify-ui/e2e",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./test-results ./playwright-report",
"clean:all": "rimraf ./dist ./node_modules",
"codegen": "npx playwright codegen http://localhost:3000/",
"test": "npx bddgen && npx playwright test --project='api' --project='chromium' --project='bdd'",
"test:api": "npx playwright test --project='api'",
"test:ui": "npx bddgen && npx playwright test --project='chromium' --project='bdd'",
"test:ui:trace": "npx bddgen && npx playwright test --project='chromium' --project='bdd' --trace on",
"test:ui:host": "npx bddgen && npx playwright test --ui-host 127.0.0.1",
"test:bdd": "npx bddgen && npx playwright test --project='bdd'",
"test:bdd:trace": "npx bddgen && npx playwright test --project='bdd' --trace on",
"check": "biome check --error-on-warnings . && npx tsc --noEmit",
"check:write": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.57.0",
"axios": "^1.13.5",
"playwright-bdd": "^8.3.1"
}
}