Skip to content

Commit 7bd1d64

Browse files
minhhaitran08github-actions[bot]
authored andcommitted
Auto-formatted the code using Prettier
1 parent 8f2af07 commit 7bd1d64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

course-matrix/backend/__tests__/timetablesController.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jest.mock("@ai-sdk/openai", () => ({
1515

1616
jest.mock("ai", () => ({
1717
streamText: jest.fn(() =>
18-
Promise.resolve({ pipeDataStreamToResponse: jest.fn() })
18+
Promise.resolve({ pipeDataStreamToResponse: jest.fn() }),
1919
),
2020
}));
2121

@@ -189,7 +189,7 @@ describe("GET /api/timetables", () => {
189189
(
190190
authHandler as jest.MockedFunction<typeof authHandler>
191191
).mockImplementationOnce(
192-
mockAuthHandler("testuser01-ab9e6877-f603-4c6a-9832-864e520e4d01")
192+
mockAuthHandler("testuser01-ab9e6877-f603-4c6a-9832-864e520e4d01"),
193193
);
194194

195195
const response = await request(app).get("/api/timetables");
@@ -204,7 +204,7 @@ describe("GET /api/timetables", () => {
204204
(
205205
authHandler as jest.MockedFunction<typeof authHandler>
206206
).mockImplementationOnce(
207-
mockAuthHandler("testuser02-1d3f02df-f926-4c1f-9f41-58ca50816a33")
207+
mockAuthHandler("testuser02-1d3f02df-f926-4c1f-9f41-58ca50816a33"),
208208
);
209209

210210
const response = await request(app).get("/api/timetables");

0 commit comments

Comments
 (0)