diff --git a/tests/e2e/setup/001-npm-sandbox.ts b/tests/e2e/setup/001-npm-sandbox.ts index 9989beb80b36..aa026a991cb1 100644 --- a/tests/e2e/setup/001-npm-sandbox.ts +++ b/tests/e2e/setup/001-npm-sandbox.ts @@ -35,8 +35,9 @@ export default async function () { process.env['NPM_CONFIG_legacy_peer_deps'] = 'true'; } - // Allow github tarballs consumption. + // Allow github tarballs and git dependencies consumption. process.env['NPM_CONFIG_allow_remote'] = 'all'; + process.env['NPM_CONFIG_allow_git'] = 'true'; // Configure the registry and prefix used within the test sandbox via rc files await writeFile(npmrc, `registry=${npmRegistry}\nprefix=${npmModulesPrefix}`);