Last active
September 15, 2015 20:30
-
-
Save travisperson/d53e74e2ee24e631933d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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