You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests in this repo fails when v0.25.0 is installed globally.
Output from one of the tests:
$ NOCK_ENV="replay" CI=true yarn test upFAIL tests/Up.test.ts UpCommand ✕ should upgrade the package manager from the current project (460 ms) ● UpCommand › should upgrade the package manager from the current project expect(received).resolves.toMatchObject(expected) - Expected - 1 + Received + 4 Object { "exitCode": 0, - "stderr": "", + "stderr": "Corepack is about to download https://registry.npmjs.org/yarn. + Corepack is about to download https://repo.yarnpkg.com/tags. + Corepack is about to download https://repo.yarnpkg.com/2.4.3/packages/yarnpkg-cli/bin/yarn.js. + ", } 18 | }); 19 | > 20 | await expect(runCli(cwd, [`up`])).resolves.toMatchObject({ | ^ 21 | exitCode: 0, 22 | stderr: ``, 23 | }); at Object.toMatchObject (../../../.yarn/berry/cache/expect-npm-29.7.0-62e9f7979e-10c0.zip/node_modules/expect/build/index.js:174:22) at toMatchObject (tests/Up.test.ts:20:50) at NodeFS.mktempPromise (../../../.yarn/berry/cache/@yarnpkg-fslib-npm-3.0.1-df63ac76ba-10c0.zip/node_modules/@yarnpkg/fslib/lib/xfs.js:86:24) at Object.<anonymous> (tests/Up.test.ts:15:5)
Reproduction steps:
docker run --rm -it --network host node:20.11.1 bash
mkdir -p /root/.cache/node/corepack
npm install -g corepack@0.25.1
corepack enable
git clone --depth=1 https://github.com/nodejs/corepack
cd corepack
yarn
yarn build
NOCK_ENV="replay" CI=true yarn test up
The text was updated successfully, but these errors were encountered:
The tests in this repo fails when v0.25.0 is installed globally.
Output from one of the tests:
Reproduction steps:
The text was updated successfully, but these errors were encountered: