Update user-notes.ts
This commit is contained in:
parent
e4de402ca1
commit
6f17993cba
|
@ -38,24 +38,10 @@ describe('users/notes', () => {
|
||||||
await app.close();
|
await app.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
test('withFiles', async () => {
|
||||||
test('ファイルタイプ指定 (jpg)', async () => {
|
|
||||||
const res = await api('/users/notes', {
|
const res = await api('/users/notes', {
|
||||||
userId: alice.id,
|
userId: alice.id,
|
||||||
fileType: ['image/jpeg'],
|
withFiles: true,
|
||||||
}, alice);
|
|
||||||
|
|
||||||
assert.strictEqual(res.status, 200);
|
|
||||||
assert.strictEqual(Array.isArray(res.body), true);
|
|
||||||
assert.strictEqual(res.body.length, 2);
|
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === jpgNote.id), true);
|
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('ファイルタイプ指定 (jpg or png)', async () => {
|
|
||||||
const res = await api('/users/notes', {
|
|
||||||
userId: alice.id,
|
|
||||||
fileType: ['image/jpeg', 'image/png'],
|
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 200);
|
assert.strictEqual(res.status, 200);
|
||||||
|
@ -65,5 +51,4 @@ describe('users/notes', () => {
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === pngNote.id), true);
|
assert.strictEqual(res.body.some((note: any) => note.id === pngNote.id), true);
|
||||||
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
|
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue