From 0c9d19d9cf49105525c074228eb8191b8099dea3 Mon Sep 17 00:00:00 2001 From: Horacio Herrera Date: Sun, 25 Jun 2023 14:08:34 +0200 Subject: [PATCH] fix: update playwright image from `mcr.microsoft.com/playwright:v1.33.0-focal` to `mcr.microsoft.com/playwright:v1.35.1-focal` --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 675a52165c..71175075e7 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "scripts": { "start": "lerna run --stream --scope @blocknote/example-editor dev", "start:built": "npx serve examples/editor/dist", - "test:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.33.0-focal npx playwright test -u", + "test:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.35.1-focal npx playwright test -u", "build": "lerna run --stream build --concurrency 1", "build:site": "lerna run --stream docs:build --concurrency 1", "lint": "lerna run --stream lint", @@ -29,7 +29,7 @@ "prepublishOnly": "npm run build && cp README.md packages/core/README.md && cp README.md packages/react/README.md", "postpublish": "rm -rf packages/core/README.md && rm -rf packages/react/README.md", "test-ct": "playwright test -c playwright-ct.config.ts --headed", - "test-ct:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.33.0-focal npm install && playwright test -c playwright-ct.config.ts -u" + "test-ct:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.35.1-focal npm install && playwright test -c playwright-ct.config.ts -u" }, "overrides": { "react": "18.2.0",