Skip to content

Commit

Permalink
Update mocha.js to correct typos
Browse files Browse the repository at this point in the history
Corrected two typos
  • Loading branch information
Antoine Pham committed Mar 30, 2015
1 parent 6389f78 commit 621df7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Nodejs/Product/Nodejs/TestFrameworks/mocha/mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var run_tests = function (testName, testFile, workingFolder, projectFolder) {

var mocha = new Mocha();
mocha.ui('tdd');
//set timeout to 10 minutes, becasue the default of 2 sec might be too short (TODO: make it configuable)
//set timeout to 10 minutes, because the default of 2 sec might be too short (TODO: make it configurable)
mocha.suite.timeout(600000);
if (testName) {
mocha.grep(testName);
Expand All @@ -79,4 +79,4 @@ function detectMocha(projectFolder) {
}
}

module.exports.run_tests = run_tests;
module.exports.run_tests = run_tests;

0 comments on commit 621df7b

Please sign in to comment.