-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1008 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1008 Bytes
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
{
"name": "lapus-tests",
"version": "0.5.0",
"private": true,
"description": "Multi-site Playwright E2E (tests-<id>/ + utils/)",
"scripts": {
"test": "playwright test",
"test:htmlpage": "cross-env LAPUS_SITES=htmlpage playwright test",
"test:htmlpage:manual": "cross-env LAPUS_SITES=htmlpage LAPUS_BROWSERS=chromium LAPUS_HEADED=1 LAPUS_WORKERS=1 LAPUS_TERMINAL_REPORTER=list playwright test",
"test:hola": "cross-env LAPUS_SITES=hola playwright test",
"test:synthly": "cross-env LAPUS_SITES=synthly playwright test",
"test:chromium": "cross-env LAPUS_BROWSERS=chromium playwright test",
"test:ui": "playwright test --ui",
"report": "playwright show-report",
"tag:run": "node utils/tag-run.cjs",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.52.0",
"@types/node": "^25.5.0",
"cross-env": "^7.0.3",
"eslint": "^10.1.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
}
}