Skip to content

Commit 08130e0

Browse files
committed
increase the timeout for RWC tests
1 parent 4e21f1e commit 08130e0

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Jakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,15 @@ task("runtests", ["tests", builtLocalDirectory], function() {
360360
if(fs.existsSync(testConfigFile)) {
361361
fs.unlinkSync(testConfigFile);
362362
}
363+
363364
if(tests) {
364365
writeTestConfigFile(tests, testConfigFile);
365366
}
366367

368+
if (tests && tests.toLocaleLowerCase() === "rwc") {
369+
testTimeout = 50000;
370+
}
371+
367372
colors = process.env.colors || process.env.color
368373
colors = colors ? ' --no-colors ' : ''
369374
tests = tests ? ' -g ' + tests : '';

0 commit comments

Comments
 (0)