e8f7502a7f
`@playwright/test` was loose-pinned to ^1.50.0; npm resolved it to 1.59.1 inside the runner image, which only ships browser binaries for 1.50.0. Pin both the package and the docker image to v1.59.1 so deps and binaries stay aligned.
15 lines
301 B
JSON
15 lines
301 B
JSON
{
|
|
"name": "restic-manager-e2e",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "playwright test",
|
|
"test:headed": "playwright test --headed",
|
|
"test:debug": "PWDEBUG=1 playwright test"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.59.1"
|
|
}
|
|
}
|