e2e: upgrade playwright package and container image (#13080)
The nightly playwright tests are currently failing because of a mismatch between the expected version of Chromium and what's in the container image. Unfortunately the previous specific tag we were using for the container image is no longer tagged on the registry. With some testing, I was able to find an image tag that results in a good run.
This commit is contained in:
parent
d515e5c3b0
commit
cc4a1f2ec4
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.21.1"
|
||||
"@playwright/test": "^1.22.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ EOF
|
|||
}
|
||||
|
||||
|
||||
IMAGE="mcr.microsoft.com/playwright:v1.21.0-focal"
|
||||
IMAGE="mcr.microsoft.com/playwright:focal"
|
||||
pushd $(dirname "${BASH_SOURCE[0]}") > /dev/null
|
||||
|
||||
run_tests() {
|
||||
|
|
Loading…
Reference in New Issue