diff --git a/scripts/utils/yarn.ts b/scripts/utils/yarn.ts index 08a312a0554..8db448a343d 100644 --- a/scripts/utils/yarn.ts +++ b/scripts/utils/yarn.ts @@ -23,7 +23,7 @@ export const addPackageResolutions = async ({ cwd, dryRun }: YarnOptions) => { packageJson.resolutions = { ...storybookVersions, 'enhanced-resolve': '~5.10.0', // TODO, remove this - playwright: '1.30.0', // this is for our CI test, ensure we use the same version as docker image + playwright: '1.30.0', // 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` }; await writeJSON(packageJsonPath, packageJson, { spaces: 2 }); };