From fc80ea2c3ad0f8414c75839388545354f616b48f Mon Sep 17 00:00:00 2001 From: gaba Date: Mon, 7 Nov 2016 11:49:02 -0800 Subject: [PATCH] Check it has body --- tests/routes/api/comments/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/routes/api/comments/index.js b/tests/routes/api/comments/index.js index c3694d95e..4945195a0 100644 --- a/tests/routes/api/comments/index.js +++ b/tests/routes/api/comments/index.js @@ -313,6 +313,7 @@ describe('Post /:comment_id/status', () => { .send({'status': 'accepted'}) .end(function(res){ expect(res).to.have.status(200) + expect(res).to.have.body done() }) })