Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
before(function(done) {
server = restify.createServer({
name: 'restifyErrors'
});
client = restifyClients.createJSONClient({
url: 'http://localhost:3000'
});
server.listen(3000, done);
});