From 6c4138652635b1424cd1ee4aad171346d81ab08d Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Tue, 22 Feb 2022 09:52:52 -0600 Subject: [PATCH] Lock yarn pnp version in tests --- 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 d7b3f89d810..1d616f084cd 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( ' ' )}` },