coffee icon indicating copy to clipboard operation
coffee copied to clipboard

Test command line on Node.js

Results 9 coffee issues
Sort by recently updated
recently updated
newest added

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(); ```

- Test commander - Test cluster app - Test master/slave app

semver:major

``` js .expect('stdout', [ /a/, /b/ ]) ``` Equals to ``` js .expect('stdout', /a/) .expect('stdout', /b/) ```

semver:major