From 7bb3a5a514dd7e6800f9f9a8adc346c85b6afe5a Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Wed, 13 Apr 2016 16:03:53 -0700 Subject: [PATCH] Fix case of mocha TAP -> tap --- Jakefile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jakefile.js b/Jakefile.js index 46f2a0fca96..9106c3c619d 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -717,7 +717,7 @@ function runTestsAndWriteOutput(file) { } var args = []; - args.push("-R", "TAP"); + args.push("-R", "tap"); args.push("--no-colors"); args.push("-t", testTimeout); if (tests) { @@ -1272,4 +1272,4 @@ function environmentVariableIsEnabled(name) { function environmentVariableIsDisabled(name) { return /^(no?|f(alse)?|off|disabled?|0|-)$/.test(process.env[name]); -} \ No newline at end of file +}