increase the timeout for RWC tests

This commit is contained in:
Mohamed Hegazy 2014-09-03 10:37:32 -07:00
parent 4e21f1e548
commit 08130e0ba9

View file

@ -360,10 +360,15 @@ task("runtests", ["tests", builtLocalDirectory], function() {
if(fs.existsSync(testConfigFile)) {
fs.unlinkSync(testConfigFile);
}
if(tests) {
writeTestConfigFile(tests, testConfigFile);
}
if (tests && tests.toLocaleLowerCase() === "rwc") {
testTimeout = 50000;
}
colors = process.env.colors || process.env.color
colors = colors ? ' --no-colors ' : ''
tests = tests ? ' -g ' + tests : '';