Skip to content

Instantly share code, notes, and snippets.

@chico
Created February 12, 2022 21:59
Show Gist options
  • Save chico/099a10462b605e713c6da6345d229458 to your computer and use it in GitHub Desktop.
Save chico/099a10462b605e713c6da6345d229458 to your computer and use it in GitHub Desktop.
3 - Testing with sinon & mock-stdin
import mockStdin from 'mock-stdin'
const stubStdin = (input, delay) => {
let stdin = mockStdin.stdin()
setTimeout(() => stdin.send(input), delay)
}
...
stubStdin('\n', 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment