File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
course-matrix/backend/__tests__ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ jest.mock("@ai-sdk/openai", () => ({
1515
1616jest . 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" ) ;
You can’t perform that action at this time.
0 commit comments