From 5f1536b3c5378c3a783d09c2686a9ba3d9f92d1f Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Tue, 22 Feb 2022 10:29:46 -0600 Subject: [PATCH] Lock yarn pnp version in tests (#34688) --- test/e2e/yarn-pnp/test/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/yarn-pnp/test/utils.ts b/test/e2e/yarn-pnp/test/utils.ts index d7b3f89d810b..1d616f084cd9 100644 --- a/test/e2e/yarn-pnp/test/utils.ts +++ b/test/e2e/yarn-pnp/test/utils.ts @@ -31,7 +31,7 @@ export function runTests(example = '') { prev.push(`${cur}@${dependencies[cur]}`) return prev }, [] as string[]) - return `yarn set version berry && yarn config set enableGlobalCache true && yarn config set compressionLevel 0 && yarn add ${pkgs.join( + return `yarn set version 3.1.1 && yarn config set enableGlobalCache true && yarn config set compressionLevel 0 && yarn add ${pkgs.join( ' ' )}` },