-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "ems-admin-e2e",
"version": "0.0.0",
"private": true,
"description": "Playwright end-to-end tests for the EMS Admin Console",
"scripts": {
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:system-build": "playwright test tests/e2e/system-build-action-gating.spec.ts",
"test:e2e:system-build-packaged": "playwright test --config=playwright.packaged.config.ts",
"test:e2e:system-build-remote": "playwright test --config=playwright.remote-packaged.config.ts",
"test:e2e:admin-replacement": "playwright test --config=playwright.admin-replacement.config.ts",
"test:e2e:appliance": "playwright test --config=playwright.appliance.config.ts",
"test:e2e:appliance:chromium": "playwright test --config=playwright.appliance.config.ts --project=chromium",
"test:e2e:appliance:firefox": "playwright test --config=playwright.appliance.config.ts --project=firefox",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@playwright/test": "^1.63.0"
}
}