Merge pull request #8070 from Microsoft/transforms-lowercase-mocha-tap

Fix case of mocha TAP -> tap
This commit is contained in:
Nathan Shively-Sanders 2016-04-14 08:58:09 -07:00
commit 86d7425adc

View File

@ -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]);
}
}