public static void main(String... args) throws InterruptedException {
System.setProperty( "nodyn.binary", "./bin/node" );
//System.setProperty("javax.net.debug", "all");
RuntimeFactory factory = RuntimeFactory.init(TestRunner.class.getClassLoader(), RuntimeFactory.RuntimeType.DYNJS);
NodynConfig config = new NodynConfig( new String[] { "-e", SCRIPT } );
Nodyn nodyn = factory.newRuntime(config);
nodyn.setExitHandler( new NoOpExitHandler() );
try {
int exitCode = nodyn.run();
if (exitCode != 0) {