diff --git a/Nodejs/Product/Nodejs/TestFrameworks/mocha/mocha.js b/Nodejs/Product/Nodejs/TestFrameworks/mocha/mocha.js index 998a6f84a..c554c9961 100644 --- a/Nodejs/Product/Nodejs/TestFrameworks/mocha/mocha.js +++ b/Nodejs/Product/Nodejs/TestFrameworks/mocha/mocha.js @@ -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); @@ -79,4 +79,4 @@ function detectMocha(projectFolder) { } } -module.exports.run_tests = run_tests; \ No newline at end of file +module.exports.run_tests = run_tests;