Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/e2e/setup/001-npm-sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export default async function () {
process.env['NPM_CONFIG_legacy_peer_deps'] = 'true';
}

// Allow github tarballs consumption.
process.env['NPM_CONFIG_allow_remote'] = 'all';

// Configure the registry and prefix used within the test sandbox via rc files
await writeFile(npmrc, `registry=${npmRegistry}\nprefix=${npmModulesPrefix}`);
await writeFile(yarnrc, `registry ${npmRegistry}\nprefix ${yarnModulesPrefix}`);
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/setup/100-global-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getActivePackageManager } from '../utils/packages';
import { globalNpm } from '../utils/process';

const PACKAGE_MANAGER_VERSION = {
'npm': '10.8.1',
'npm': '12.0.2',
Comment thread
alan-agius4 marked this conversation as resolved.
'yarn': '1.22.22',
'pnpm': '10.17.1',
'bun': '1.3.2',
Expand Down