Skip to content

Commit 4efe025

Browse files
committed
fix(test): sort name
1 parent 26fba40 commit 4efe025

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ app.post('/upload', async (c) => {
9191
lastModified: fileContent.lastModified,
9292
},
9393
}
94-
);
94+
).sort((a, b) => a.name.localeCompare(b.name));
9595
return c.json(returnedBody);
9696
});
9797

0 commit comments

Comments
 (0)