From 268b5949a817fd416dbada72f1334ccaac0e3dfa Mon Sep 17 00:00:00 2001 From: Tom Hickson Date: Mon, 6 Apr 2020 14:11:05 +0100 Subject: [PATCH] Revert "Prefix the cli test with 'node' so it works on windows" This reverts commit 4cd270493aeba0a9fad1661258c7ccc286934f53. --- test/node-tests/cli/cli.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/node-tests/cli/cli.test.js b/test/node-tests/cli/cli.test.js index b79cd71934..9e0a0a5acd 100644 --- a/test/node-tests/cli/cli.test.js +++ b/test/node-tests/cli/cli.test.js @@ -4,7 +4,7 @@ const path = require('path') const cp = require('child_process') function run (args, done) { - cp.exec('node bin/cli.js ' + args, function (e, r) { + cp.exec('bin/cli.js ' + args, function (e, r) { done(e, r.replace(/\n$/g, '')) }) }