1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-03 17:28:28 +09:00

[Test] Fix test

This commit is contained in:
syuilo 2017-02-13 01:07:07 +09:00
parent 3fa7ab4df4
commit 1096722e12

View File

@ -222,7 +222,9 @@ describe('API', () => {
it('ファイルを添付できる', () => new Promise(async (done) => { it('ファイルを添付できる', () => new Promise(async (done) => {
const me = await insertSakurako(); const me = await insertSakurako();
const file = await insertDriveFile(); const file = await insertDriveFile({
user_id: me._id
});
request('/posts/create', { request('/posts/create', {
media_ids: [file._id.toString()] media_ids: [file._id.toString()]
}, me).then(res => { }, me).then(res => {