Last active
November 22, 2018 17:16
-
-
Save MBehtemam/09d3bbafcde025971b0365801b84f319 to your computer and use it in GitHub Desktop.
second test
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
it("it shoud has response with hope key with value of loop", function(done){ | |
supertest(app) | |
.get("/") | |
.expect({ hope: "loop" }) | |
.end(function(err, res){ | |
if (err) done(err); | |
done(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment