disable timeout on test262 tests

This commit is contained in:
Sebastian McKenzie
2015-01-07 13:58:47 +11:00
parent 81fb8647b6
commit e60e0e0b0e

View File

@@ -53,6 +53,7 @@ _.each(tests, function (loc) {
var alias = path.relative(test262Loc + "/test", loc);
alias = alias.replace(/\.([^\.]+)$/g, "");
test(alias, function () {
this.timeout(0);
exec(loc);
});
});