diff --git a/.circleci/config.yml b/.circleci/config.yml index 9ae16c7ac03c..198fdb93faea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,7 +43,7 @@ executors: default: 'small' working_directory: /tmp/storybook docker: - - image: mcr.microsoft.com/playwright:v1.34.3-focal + - image: mcr.microsoft.com/playwright:v1.35.0-focal environment: NODE_OPTIONS: --max_old_space_size=6144 resource_class: <> diff --git a/code/package.json b/code/package.json index ed081b15a576..e7796255c218 100644 --- a/code/package.json +++ b/code/package.json @@ -79,7 +79,7 @@ "defaults" ], "resolutions": { - "@playwright/test": "1.34.3", + "@playwright/test": "1.35.0", "@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/experimental-utils": "^5.45.0", "@typescript-eslint/parser": "^5.45.0", @@ -97,7 +97,7 @@ "@emotion/jest": "^11.10.0", "@jest/globals": "^29.3.1", "@nx/workspace": "16.2.1", - "@playwright/test": "^1.34.3", + "@playwright/test": "^1.35.0", "@storybook/addon-a11y": "workspace:*", "@storybook/addon-actions": "workspace:*", "@storybook/addon-backgrounds": "workspace:*", diff --git a/code/yarn.lock b/code/yarn.lock index 349322ee4944..c749c2e227b6 100644 --- a/code/yarn.lock +++ b/code/yarn.lock @@ -4860,19 +4860,19 @@ __metadata: languageName: node linkType: hard -"@playwright/test@npm:1.34.3": - version: 1.34.3 - resolution: "@playwright/test@npm:1.34.3" +"@playwright/test@npm:1.35.0": + version: 1.35.0 + resolution: "@playwright/test@npm:1.35.0" dependencies: "@types/node": "*" fsevents: 2.3.2 - playwright-core: 1.34.3 + playwright-core: 1.35.0 dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: b87b3666568378997e6e300c28a5062d099377f66894c2d30855ef0b574a0874f5e4e6e7d25d93f1db1e5e402ccc1a254a1c24ec829a64ec47b4c8071082c9a7 + checksum: 77594d876632e9ce8a33851fed0a9ffe1034ca216811a3b5c3925c371eddb20ceb6848f3e9b10234a025dcf7be979cddcd0285ad627ad30afbc0cf246ab74c4d languageName: node linkType: hard @@ -7063,7 +7063,7 @@ __metadata: "@emotion/jest": ^11.10.0 "@jest/globals": ^29.3.1 "@nx/workspace": 16.2.1 - "@playwright/test": ^1.34.3 + "@playwright/test": ^1.35.0 "@storybook/addon-a11y": "workspace:*" "@storybook/addon-actions": "workspace:*" "@storybook/addon-backgrounds": "workspace:*" @@ -24503,6 +24503,15 @@ __metadata: languageName: node linkType: hard +"playwright-core@npm:1.35.0": + version: 1.35.0 + resolution: "playwright-core@npm:1.35.0" + bin: + playwright-core: cli.js + checksum: 157257f0950190903d75ff6af70258fe1b1c6bf44f144a063428a594c09b4631d4c151ff65e28e1d9fc13edd8bd51c4720a7d87fc755c2afba47f41919bf5875 + languageName: node + linkType: hard + "playwright@npm:^1.24.2": version: 1.34.3 resolution: "playwright@npm:1.34.3" diff --git a/scripts/utils/yarn.ts b/scripts/utils/yarn.ts index f34bd1370764..c7022c88755b 100644 --- a/scripts/utils/yarn.ts +++ b/scripts/utils/yarn.ts @@ -24,7 +24,7 @@ export const addPackageResolutions = async ({ cwd, dryRun }: YarnOptions) => { ...storybookVersions, 'enhanced-resolve': '~5.10.0', // TODO, remove this // this is for our CI test, ensure we use the same version as docker image, it should match version specified in `./code/package.json` and `.circleci/config.yml` - '@playwright/test': '^1.34.3', + '@playwright/test': '^1.35.0', }; await writeJSON(packageJsonPath, packageJson, { spaces: 2 }); };