Update selected item color in Pass menu
[ProtonMail-WebClient.git] / packages / pass / lib / api / testing.ts
blob56162f6af73a0ec25c33396feec7f9b370e61f52
1 export const TEST_SERVER_TIME = new Date(new Date().toUTCString());
3 export const mockAPIResponse = (
4     result: any = {},
5     status: number = 200,
6     headers: HeadersInit = { date: TEST_SERVER_TIME.toUTCString() }
7 ) =>
8     ({
9         json: () => Promise.resolve(result),
10         body: { bodyUsed: false } as any,
11         status,
12         headers: new Headers(headers),
13     }) as Response;