[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

[ci] format

authored by

paul valladares and committed by
bombshell-bot
(Feb 24, 2026, 9:46 AM UTC) 6086b25b e3333fbf

+2 -6
+2 -6
packages/core/test/prompts/password.test.ts
··· 65 65 }); 66 66 instance.prompt(); 67 67 input.emit('keypress', 'x', { name: 'x' }); 68 - expect(instance.userInputWithCursor).to.equal( 69 - `•${styleText(['inverse', 'hidden'], '_')}` 70 - ); 68 + expect(instance.userInputWithCursor).to.equal(`•${styleText(['inverse', 'hidden'], '_')}`); 71 69 }); 72 70 73 71 test('renders cursor inside value', () => { ··· 94 92 }); 95 93 instance.prompt(); 96 94 input.emit('keypress', 'x', { name: 'x' }); 97 - expect(instance.userInputWithCursor).to.equal( 98 - `X${styleText(['inverse', 'hidden'], '_')}` 99 - ); 95 + expect(instance.userInputWithCursor).to.equal(`X${styleText(['inverse', 'hidden'], '_')}`); 100 96 }); 101 97 }); 102 98 });