Skip to content

Instantly share code, notes, and snippets.

@MBehtemam
Last active November 22, 2018 17:16
Show Gist options
  • Save MBehtemam/09d3bbafcde025971b0365801b84f319 to your computer and use it in GitHub Desktop.
Save MBehtemam/09d3bbafcde025971b0365801b84f319 to your computer and use it in GitHub Desktop.
second test
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