From 5937f13bdf6adb98929f5b8c09aee2bb5205235b Mon Sep 17 00:00:00 2001 From: Pierre Vanduynslager Date: Mon, 19 Nov 2018 18:24:30 -0500 Subject: [PATCH] test: fix typo --- test/cli.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}});