.setPort(8082)
.build();
jstd.startServer();
startLatch.await(10, TimeUnit.SECONDS);
assertTrue(testServerListener.serverStarted);
Configuration configuration = new UserConfigurationSource(new File("./jsTestDriver.conf")).parse(new BasePaths(new File(".")), new YamlParser());
jstd.getTestCasesFor(configuration);
jstd.stopServer();
stopLatch.await(10, TimeUnit.SECONDS);
assertTrue(testServerListener.serverStopped);
}