forked from FoundKeyGang/FoundKey
[Test] Fix test
This commit is contained in:
parent
3fa7ab4df4
commit
1096722e12
1 changed files with 3 additions and 1 deletions
|
@ -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 => {
|
||||||
|
|
Loading…
Reference in a new issue