Fix test runners under node

This commit is contained in:
kpdecker
2013-10-09 03:22:05 -07:00
parent 4d7124f6bf
commit 3b0a3ca1b2
5 changed files with 34 additions and 24 deletions
+5 -6
View File
@@ -13,12 +13,11 @@ var files = fs.readdirSync(testDir)
.map(function(name) { return testDir + '/' + name; });
run('./node', function() {
process.exit(errors);
//run('./browser', function() {
//run('./runtime', function() {
//process.exit(errors);
//});
//});
run('./browser', function() {
run('./runtime', function() {
process.exit(errors);
});
});
});