@@ -306,7 +306,7 @@ describe('Test a happy path of events', () => {
306306 purgeQueue ( 'speed.safetyCar.overtake' ) ,
307307 purgeQueue ( 'speed.timer' ) ,
308308 purgeQueue ( 'team.teamData' )
309- ] )
309+ ] ) ;
310310 } ) ;
311311 it ( 'should contain no teams in the start' , ( ) => {
312312 return request ( HOST )
@@ -326,7 +326,7 @@ describe('Test a happy path of events', () => {
326326 expect ( response . status ) . toBe ( 200 )
327327 expect ( response . body ) . toStrictEqual ( createdTeam )
328328 } )
329- . then ( _ => assertQueue ( 'team.teamData' , createdTeam ) )
329+ . then ( _ => assertQueue ( 'team.teamData' , createdTeam ) ) ;
330330 } ) ;
331331 it ( 'should display the new team' , ( ) => {
332332 return request ( HOST )
@@ -368,7 +368,7 @@ describe('Test a happy path of events', () => {
368368 expect ( response . status ) . toBe ( 200 )
369369 expect ( response . body ) . toStrictEqual ( skillTimerStart )
370370 } )
371- . then ( _ => assertQueue ( 'skill.timer' , skillTimerStart ) )
371+ . then ( _ => assertQueue ( 'skill.timer' , skillTimerStart ) ) ;
372372 } ) ;
373373 it ( 'should stop the skill timer' , ( ) => {
374374 return request ( HOST )
@@ -379,7 +379,7 @@ describe('Test a happy path of events', () => {
379379 expect ( response . status ) . toBe ( 200 )
380380 expect ( response . body ) . toStrictEqual ( skillTimerStop )
381381 } )
382- . then ( _ => assertQueue ( 'skill.timer' , skillTimerStop ) )
382+ . then ( _ => assertQueue ( 'skill.timer' , skillTimerStop ) ) ;
383383 } ) ;
384384 it ( 'should update team on gate enter' , ( ) => {
385385 return request ( HOST )
@@ -448,7 +448,7 @@ describe('Test a happy path of events', () => {
448448 expect ( response . status ) . toBe ( 200 )
449449 expect ( response . body ) . toStrictEqual ( speedTimerStop )
450450 } )
451- . then ( _ => assertQueue ( 'speed.timer' , speedTimerStop ) )
451+ . then ( _ => assertQueue ( 'speed.timer' , speedTimerStop ) ) ;
452452 } ) ;
453453 it ( 'should update team after lap is completed' , ( ) => {
454454 return request ( HOST )
@@ -507,6 +507,6 @@ describe('Test a happy path of events', () => {
507507 . then ( _ => assertQueue ( 'team.teamData' , updatedTeamAfterEndResults ) ) ;
508508 } ) ;
509509 afterAll ( ( ) => {
510- return cleanDB ( )
510+ return cleanDB ( ) ;
511511 } ) ;
512- } ) ;
512+ } ) ;
0 commit comments