Skip to content

Commit 9e09048

Browse files
committed
fix: rename test name to satisfy typos lint (unparseable -> unparsable)
1 parent aa80b00 commit 9e09048

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/utils/__tests__/prompts.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('shouldIgnoreScriptsForAutoInstall', () => {
2121
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.bun, '11.0.0')).toBe(false);
2222
});
2323

24-
it('returns false when version is unknown or unparseable', () => {
24+
it('returns false when version is unknown or unparsable', () => {
2525
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, undefined)).toBe(false);
2626
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, 'latest')).toBe(false);
2727
expect(shouldIgnoreScriptsForAutoInstall(PackageManager.pnpm, '')).toBe(false);

0 commit comments

Comments
 (0)