summaryrefslogtreecommitdiff
path: root/packages/backend/test/_e2e/user-notes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/test/_e2e/user-notes.ts')
-rw-r--r--packages/backend/test/_e2e/user-notes.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/test/_e2e/user-notes.ts b/packages/backend/test/_e2e/user-notes.ts
index 353875634c..a6cc1057f9 100644
--- a/packages/backend/test/_e2e/user-notes.ts
+++ b/packages/backend/test/_e2e/user-notes.ts
@@ -32,7 +32,7 @@ describe('users/notes', () => {
await shutdownServer(p);
});
- it('ファイルタイプ指定 (jpg)', async () => {
+ test('ファイルタイプ指定 (jpg)', async () => {
const res = await request('/users/notes', {
userId: alice.id,
fileType: ['image/jpeg'],
@@ -45,7 +45,7 @@ describe('users/notes', () => {
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
});
- it('ファイルタイプ指定 (jpg or png)', async () => {
+ test('ファイルタイプ指定 (jpg or png)', async () => {
const res = await request('/users/notes', {
userId: alice.id,
fileType: ['image/jpeg', 'image/png'],