From 058c3f63abeee7b42b9d8dd76d567857f834b990 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Tue, 10 Jan 2017 21:16:16 +0100 Subject: [PATCH] Make tests use the correct binary --- test/args-parsing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/args-parsing.js b/test/args-parsing.js index 8d53ca0..d9de669 100644 --- a/test/args-parsing.js +++ b/test/args-parsing.js @@ -66,7 +66,7 @@ test('"now alias --help" is the same as "now --help alias"', async t => { */ function now(...args) { return new Promise((resolve, reject) => { - const command = path.resolve(__dirname, '../bin/now') + const command = path.resolve(__dirname, '../bin/now.js') const now = spawn(command, args) let stdout = ''