From c4e517ab15980f0aca0a0e03a563bfb4318f1609 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 17 Jan 2017 10:23:15 +0900 Subject: [PATCH] [Test] Fix bug --- test/api.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/api.js b/test/api.js index e48d885db..32052fe5a 100644 --- a/test/api.js +++ b/test/api.js @@ -28,6 +28,7 @@ describe('API', () => { }; chai.request(server) .post('/signup') + .set('content-type', 'application/x-www-form-urlencoded') .send(account) .end((err, res) => { res.should.have.status(200);