Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/tests/iojs/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/tests/iojs/config.js')
-rwxr-xr-xutils/tests/iojs/config.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/utils/tests/iojs/config.js b/utils/tests/iojs/config.js
deleted file mode 100755
index e52293e..0000000
--- a/utils/tests/iojs/config.js
+++ /dev/null
@@ -1,11 +0,0 @@
-(function (env) {
- try {
- var sandbox = require('chiron/sandbox').sandbox;
- var base = require('chiron/base');
- var log = base.List();
- sandbox('test/iojs/program', {print: log.push});
- return [200, {'Content-type': 'text/plain'}, log.eachIter(base.add("\n"))];
- } catch (exception) {
- return [500, {'Content-type': 'text/plain'}, [''+(exception.message || exception)]];
- }
-});