Run node tests last

This covers all of the test cases and generally have better stack traces so we want to have these featured more prominently.
This commit is contained in:
kpdecker
2015-08-18 23:06:23 -07:00
parent b85cad8df6
commit 1c2b74e537
+2 -2
View File
@@ -13,9 +13,9 @@ var files = fs.readdirSync(testDir)
.filter(function(name) { return (/.*\.js$/).test(name); })
.map(function(name) { return testDir + '/' + name; });
run('./node', function() {
run('./runtime', function() {
run('./browser', function() {
run('./runtime', function() {
run('./node', function() {
/*eslint-disable no-process-exit */
process.exit(errors);
/*eslint-enable no-process-exit */