Advertisement
Guest User

Failing test

a guest
Apr 20th, 2018
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. it('Should respond with an empty array if title provided but movie doesn\'t exist', (done) => {
  2. request(app).post('/movies').send({"title": "ihopethisdoesntexist:)" })
  3. .then(()=>{
  4. request(app).get('/movies?title=Home+Alone').then((res) => {
  5. expect(res.body.message.length).toBe(0)
  6. done()
  7. })
  8. })
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement