Skip to content

Instantly share code, notes, and snippets.

@brianflurry
Created October 2, 2012 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianflurry/3821576 to your computer and use it in GitHub Desktop.
Save brianflurry/3821576 to your computer and use it in GitHub Desktop.
Startup the Node server before running regression tests
restify = require('restify');
assert = require('assert');
before(function(done) {
require('../start_server').StartServer();
done();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment