throws InterruptedException, ExecutionException, NodeException
{
NodeScript script = env.createScript("argvtest.js",
new File("target/test-classes/tests/argvtest.js"),
new String[] { "One", "Two", "Three" });
ScriptStatus status = script.execute().get();
assertEquals(0, status.getExitCode());
script.close();
}