blob: 4a24c61b6063b3ca41ff2efd8a1e8035bcb5657b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "player-e2e-web",
"version": "1.0.0",
"description": "Playwright smoke tests for the Player web UI",
"private": true,
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"install-browsers": "playwright install --with-deps chromium"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
}
}
|