File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/routes/projectMemberInvites Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -841,7 +841,7 @@ describe('Project Member Invite create', () => {
841841 projectId : project1 . id ,
842842 userId : 3 ,
843843 email : null ,
844- isSSO : false
844+ isSSO : false ,
845845 } ) ) . should . be . true ;
846846 done ( ) ;
847847 } ) ;
@@ -889,7 +889,7 @@ describe('Project Member Invite create', () => {
889889 projectId : project1 . id ,
890890 userId : null ,
891891 email : 'hello@world.com' ,
892- isSSO : false
892+ isSSO : false ,
893893 } ) ) . should . be . true ;
894894 done ( ) ;
895895 } ) ;
Original file line number Diff line number Diff line change @@ -359,21 +359,21 @@ describe('Project member invite update', () => {
359359 userId : invite1 . userId ,
360360 status : INVITE_STATUS . ACCEPTED ,
361361 email : null ,
362- isSSO : false
362+ isSSO : false ,
363363 } ) ) . should . be . true ;
364364 createEventSpy . secondCall . calledWith ( BUS_API_EVENT . MEMBER_JOINED , sinon . match ( {
365365 projectId : project1 . id ,
366366 projectName : project1 . name ,
367367 userId : invite1 . userId ,
368368 initiatorUserId : 40051331 ,
369- isSSO : false
369+ isSSO : false ,
370370 } ) ) . should . be . true ;
371371 createEventSpy . thirdCall . calledWith ( BUS_API_EVENT . PROJECT_TEAM_UPDATED , sinon . match ( {
372372 projectId : project1 . id ,
373373 projectName : project1 . name ,
374374 userId : invite1 . userId ,
375375 initiatorUserId : 40051331 ,
376- isSSO : false
376+ isSSO : false ,
377377 } ) ) . should . be . true ;
378378 done ( ) ;
379379 } ) ;
You can’t perform that action at this time.
0 commit comments