return;
}
Sandbox sb = new Sandbox();
sb.setFilesystemRoot("./target/test-classes");
sb.mount("/node_modules", "./target/test-classes/global");
NodeScript script = env.createScript("globalmoduletest.js",
new File("./target/test-classes/tests/globalmoduletest.js"), null);
HashMap<String, String> env = new HashMap<String, String>();
// TODO we can't seem to do this for nested paths unless we have every subdirectory there.
env.put("NODE_PATH", "/node_modules");