* Update create.ts

* Update api.ts
This commit is contained in:
Acid Chicken (硫酸鶏) 2018-11-22 05:06:51 +09:00 committed by syuilo
parent 2b4d63b1bb
commit 6951f7e74a
2 changed files with 3 additions and 1 deletions

View file

@ -314,6 +314,7 @@ describe('API', () => {
const file = await uploadFile(bob);
const res = await request('/notes/create', {
text: 'test',
fileIds: [file.id]
}, me);
@ -327,6 +328,7 @@ describe('API', () => {
const me = await signup();
const res = await request('/notes/create', {
text: 'test',
fileIds: ['000000000000000000000000']
}, me);