Skip to content

Instantly share code, notes, and snippets.

@travisperson
Last active September 15, 2015 20:30
Show Gist options
  • Select an option

  • Save travisperson/d53e74e2ee24e631933d to your computer and use it in GitHub Desktop.

Select an option

Save travisperson/d53e74e2ee24e631933d to your computer and use it in GitHub Desktop.
var response;
before(function (done) {
server.inject(options, function (res) {
response = res;
done();
});
});
it('should fail with a descriptive error', function() {
expect(true).to.be.false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment