We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa80b00 commit 9e09048Copy full SHA for 9e09048
1 file changed
packages/cli/src/utils/__tests__/prompts.spec.ts
@@ -21,7 +21,7 @@ describe('shouldIgnoreScriptsForAutoInstall', () => {
21
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.bun, '11.0.0')).toBe(false);
22
});
23
24
- it('returns false when version is unknown or unparseable', () => {
+ it('returns false when version is unknown or unparsable', () => {
25
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, undefined)).toBe(false);
26
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, 'latest')).toBe(false);
27
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, '')).toBe(false);
0 commit comments