coffee
coffee copied to clipboard
Test command line on Node.js
my command line tool asks me 2 questions. both needs to be answered with yes or no. here is my test code: ```javascript const Coffee = coffee.Coffee; const response =...
https://github.com/vesln/nixt
``` js yield coffee.fork() ```
``` js coffee.fork('/path/to/file') .send({ msg: 'xxx' }) .end(); ```
``` js .expect('stdout', [ /a/, /b/ ]) ``` Equals to ``` js .expect('stdout', /a/) .expect('stdout', /b/) ```