We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41bb81f commit 990ab71Copy full SHA for 990ab71
1 file changed
lambdas/api-handler/src/handlers/__tests__/get-mi.test.ts
@@ -28,7 +28,7 @@ describe("API Lambda handler", () => {
28
jest.resetModules();
29
});
30
31
- it("returns 200 OK and the letter status", async () => {
+ it("returns 200 OK and the MI information", async () => {
32
const mockedGetMiById = getMiOperation as jest.Mock;
33
mockedGetMiById.mockResolvedValue({
34
data:{
@@ -75,7 +75,7 @@ describe("API Lambda handler", () => {
75
76
expect(result).toEqual({
77
statusCode: 200,
78
- body: JSON.stringify(expected),
+ body: JSON.stringify(expected, null, 2),
79
80
81
0 commit comments