[Test] Fix test

This commit is contained in:
syuilo 2017-01-20 17:36:19 +09:00
parent c55e5114ac
commit 88e5a18509

View file

@ -353,7 +353,7 @@ describe('API', () => {
request('/posts/likes/create', {
post_id: himaPost._id.toString()
}, me).then(res => {
res.should.have.status(200);
res.should.have.status(204);
done();
});
}));
@ -380,12 +380,12 @@ describe('API', () => {
text: 'ひま'
});
const me = await insertSakurako();
await db.get('likes').insert({
user_id: me._id,
post_id: himaPost._id
});
const me = await insertSakurako();
request('/posts/likes/create', {
post_id: himaPost._id.toString()
}, me).then(res => {