Skip to content

Commit 0866362

Browse files
authored
NO-JIRA: tests(browser/): update dependencies in pnpm-lock.yaml (#1046)
Updated multiple dependencies to their latest versions, including Playwright, TypeScript, and Testcontainers. ``` + pnpm exec playwright test Error: Cannot find module '/mnt/node_modules/testcontainers/build/wait-strategies/http-wait-strategy' imported from /mnt/tests/codeserver.spec.ts Did you mean to import "testcontainers/build/wait-strategies/http-wait-strategy.js"? ``` ``` Error: browserType.launch: Executable doesn't exist at /ms-playwright/chromium_headless_shell-1169/chrome-linux/headless_shell ╔══════════════════════════════════════════════════════════════════════╗ ║ Looks like Playwright Test or Playwright was just updated to 1.52.0. ║ ║ Please update docker image as well. ║ ║ - current: mcr.microsoft.com/playwright:v1.48.1-noble ║ ║ - required: mcr.microsoft.com/playwright:v1.52.0-noble ║ ║ ║ ║ <3 Playwright Team ║ ╚══════════════════════════════════════════════════════════════════════╝ ```
1 parent 3fdeeda commit 0866362

File tree

4 files changed

+309
-85
lines changed

4 files changed

+309
-85
lines changed

.github/workflows/build-notebooks-TEMPLATE.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ jobs:
594594
--volume ${PODMAN_SOCK}:/var/run/docker.sock \
595595
--volume ${PWD}:/mnt \
596596
--volume /mnt/node_modules \
597-
mcr.microsoft.com/playwright:v1.48.1-noble \
597+
mcr.microsoft.com/playwright:v1.52.0-noble \
598598
/bin/bash <<EOF
599599
set -Eeuxo pipefail
600600
cd /mnt

tests/browser/package.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"type": "module",
23
"private": "true",
34
"name": "notebooks",
45
"version": "1.0.0",
@@ -9,8 +10,12 @@
910
"author": "",
1011
"license": "MIT",
1112
"devDependencies": {
12-
"@playwright/test": "^1.48.2",
13-
"@types/node": "^22.8.1",
14-
"testcontainers": "^10.13.2"
15-
}
13+
"@playwright/test": "^1.52.0",
14+
15+
"testcontainers": "^10.25.0",
16+
17+
"typescript": "^5.0.5",
18+
"@types/node": "^22.15.17"
19+
},
20+
"packageManager": "[email protected]"
1621
}

0 commit comments

Comments
 (0)