Skip to content

Commit

Permalink
Merge branch 'upload-attachments-#1026' into upload-images-#1062
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadkitenge committed Oct 31, 2024
2 parents a3bed27 + 36b9c8f commit 9217c79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mocks/handlers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DefaultBodyType, http, HttpResponse, PathParams } from 'msw';
import { DefaultBodyType, delay, http, HttpResponse, PathParams } from 'msw';
import {
AttachmentPostMetadata,
AttachmentPostMetadataResponse,
Expand Down Expand Up @@ -972,6 +972,7 @@ export const handlers = [
// ------------------------------------ OBJECT STORAGE ------------------------------------------------

http.post('/object-storage', async () => {
await delay(200);
return new HttpResponse(undefined, { status: 200 });
}),

Expand Down

0 comments on commit 9217c79

Please sign in to comment.