diff --git a/test/cli.test.js b/test/cli.test.js index 07778dc2..bad7efaf 100644 --- a/test/cli.test.js +++ b/test/cli.test.js @@ -186,7 +186,7 @@ test.serial('Display help', async t => { t.is(exitCode, 0); }); -test.serial('Returns error code and prints help if called with a command', async t => { +test.serial('Return error code and prints help if called with a command', async t => { const run = stub().resolves(true); const argv = ['', '', 'pre']; const cli = requireNoCache('../cli', {'.': run, process: {...process, argv}});