From 1c2b74e537409e5672d587f1df19730d9766151d Mon Sep 17 00:00:00 2001 From: kpdecker Date: Tue, 18 Aug 2015 23:06:23 -0700 Subject: 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. --- spec/env/runner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/env/runner.js b/spec/env/runner.js index 56fc8d4..98d2482 100644 --- a/spec/env/runner.js +++ b/spec/env/runner.js @@ -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 */ -- cgit v1.1