Update api.js

This commit is contained in:
syuilo⭐️ 2017-01-18 02:38:04 +09:00
parent cef7fe72ed
commit 2a6ac7e3ef

View file

@ -229,6 +229,24 @@ describe('API', () => {
});
}));
it('過去にフォロー歴があった状態でフォローできる', () => new Promise(async (done) => {
const hima = await insertHimawari();
const me = await insertSakurako();
await db.get('followings').insert({
followee_id: hima._id,
follower_id: me._id,
deleted_at: new Date()
});
request('/followings/create', {
user_id: hima._id.toString()
}, me).then(res => {
res.should.have.status(200);
res.body.should.be.a('object');
res.body.should.have.property('id').eql(hima._id.toString());
done();
});
}));
it('既にフォローしている場合は怒る', () => new Promise(async (done) => {
const hima = await insertHimawari();
const me = await insertSakurako();