summaryrefslogtreecommitdiffstats
path: root/spec/env/runner.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/env/runner.js')
-rw-r--r--spec/env/runner.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/spec/env/runner.js b/spec/env/runner.js
index 919f0ae..0d0cef2 100644
--- a/spec/env/runner.js
+++ b/spec/env/runner.js
@@ -6,16 +6,19 @@ var errors = 0,
testDir = path.dirname(__dirname),
grep = process.argv[2];
+var files = [ testDir + "/basic.js" ];
+
var files = fs.readdirSync(testDir)
.filter(function(name) { return (/.*\.js$/).test(name); })
.map(function(name) { return testDir + '/' + name; });
run('./node', function() {
- run('./browser', function() {
- run('./runtime', function() {
- process.exit(errors);
- });
- });
+ process.exit(errors);
+ //run('./browser', function() {
+ //run('./runtime', function() {
+ //process.exit(errors);
+ //});
+ //});
});