@@ -28,7 +28,7 @@ jest.mock("@ai-sdk/openai", () => ({
2828
2929jest . mock ( "ai" , ( ) => ( {
3030 streamText : jest . fn ( ( ) =>
31- Promise . resolve ( { pipeDataStreamToResponse : jest . fn ( ) } )
31+ Promise . resolve ( { pipeDataStreamToResponse : jest . fn ( ) } ) ,
3232 ) ,
3333} ) ) ;
3434
@@ -299,7 +299,7 @@ describe("GET /api/timetables/restrictions/:id", () => {
299299 (
300300 authHandler as jest . MockedFunction < typeof authHandler >
301301 ) . mockImplementationOnce (
302- mockAuthHandler ( "testuser04-f84fd0da-d775-4424-ad88-d9675282453c" )
302+ mockAuthHandler ( "testuser04-f84fd0da-d775-4424-ad88-d9675282453c" ) ,
303303 ) ;
304304
305305 const response = await request ( app ) . get ( "/api/timetables/restrictions/1" ) ;
@@ -314,7 +314,7 @@ describe("GET /api/timetables/restrictions/:id", () => {
314314 (
315315 authHandler as jest . MockedFunction < typeof authHandler >
316316 ) . mockImplementationOnce (
317- mockAuthHandler ( "testuser03-f84fd0da-d775-4424-ad88-d9675282453c" )
317+ mockAuthHandler ( "testuser03-f84fd0da-d775-4424-ad88-d9675282453c" ) ,
318318 ) ;
319319
320320 const response = await request ( app ) . get ( "/api/timetables/restrictions/1" ) ;
@@ -515,7 +515,7 @@ describe("DELETE /api/timetables/:id", () => {
515515 ) . mockImplementationOnce ( mockAuthHandler ( user_id ) ) ;
516516
517517 const response = await request ( app ) . delete (
518- "/api/timetables/restrictions/1?calendar_id=1"
518+ "/api/timetables/restrictions/1?calendar_id=1" ,
519519 ) ;
520520
521521 // Check that the `update` method was called
@@ -535,7 +535,7 @@ describe("DELETE /api/timetables/:id", () => {
535535 ) . mockImplementationOnce ( mockAuthHandler ( user_id ) ) ;
536536
537537 const response = await request ( app ) . delete (
538- "/api/timetables/restrictions/1?calendar_id=1"
538+ "/api/timetables/restrictions/1?calendar_id=1" ,
539539 ) ;
540540
541541 // Check that the `update` method was called
0 commit comments