[API] Fix bug
This commit is contained in:
parent
03732b66c8
commit
9fa0b06b78
2 changed files with 13 additions and 2 deletions
13
test/api.js
13
test/api.js
|
@ -220,6 +220,19 @@ describe('API', () => {
|
|||
});
|
||||
}));
|
||||
|
||||
it('ファイルを添付できる', () => new Promise(async (done) => {
|
||||
const me = await insertSakurako();
|
||||
const file = await insertDriveFile();
|
||||
request('/posts/create', {
|
||||
media_ids: [file._id.toString()]
|
||||
}, me).then(res => {
|
||||
res.should.have.status(200);
|
||||
res.body.should.be.a('object');
|
||||
res.body.should.have.property('media_ids').eql([file._id.toString()]);
|
||||
done();
|
||||
});
|
||||
}));
|
||||
|
||||
it('返信できる', () => new Promise(async (done) => {
|
||||
const hima = await insertHimawari();
|
||||
const himaPost = await db.get('posts').insert({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue