Skip to content

Instantly share code, notes, and snippets.

@kriskowal
Created April 19, 2009 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskowal/97875 to your computer and use it in GitHub Desktop.
Save kriskowal/97875 to your computer and use it in GitHub Desktop.
var base = require('chiron/base');
var sandbox = require('chiron/sandbox').sandbox;
base.forEach([
'absolute',
'cyclic',
'exactExports',
'hasOwnProperty',
'method',
'missing',
'monkeys',
'nested',
'relative',
'transitive',
'determinism'
], function (testName) {
base.print('BEGIN: ' + testName);
try {
sandbox(
'program',
environment,
{
prefix: 'test/iojs/' + testName + '/',
debug: true
}
);
} catch (exception) {
base.print('ERROR ' + (exception.message || exception));
}
base.print('END: ' + testName);
base.print('');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment