UNPKG

todo

Version:

Todos in the CLI like what.

10 lines (9 loc) 245 B
describe('todo unrecognized-command', function() { it('errors with useful message', function(done) { cli() .run('todo this-is-invalid') .stderr('todo: Unrecognized command "this-is-invalid"') .code(1) .end(done); }); });