File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ describe('Tickets: sagas', () => {
8686 expect ( ticketsFromState ) . toEqual ( [ ] ) ;
8787 } ) ;
8888
89- fit ( 'should call fetchContainerTicket endpoint' , async ( ) => {
89+ it ( 'should call fetchContainerTicket endpoint' , async ( ) => {
9090 mockServer
9191 . get ( `/teamspaces/${ teamspace } /projects/${ projectId } /containers/${ modelId } /tickets/${ ticket . _id } ` )
9292 . reply ( 200 , ticket ) ;
@@ -197,7 +197,7 @@ describe('Tickets: sagas', () => {
197197 expect ( ticketsFromState ) . toEqual ( [ ] ) ;
198198 } ) ;
199199
200- fit ( 'should call fetchFederationTicket endpoint' , async ( ) => {
200+ it ( 'should call fetchFederationTicket endpoint' , async ( ) => {
201201 mockServer
202202 . get ( `/teamspaces/${ teamspace } /projects/${ projectId } /federations/${ modelId } /tickets/${ ticket . _id } ` )
203203 . reply ( 200 , ticket ) ;
@@ -283,7 +283,7 @@ describe('Tickets: sagas', () => {
283283 } ) ;
284284 describe ( 'groups' , ( ) => {
285285 beforeEach ( populateTicketsStore ) ;
286- fit ( 'should call upsertTicketAndFetchGroups' , async ( ) => {
286+ it ( 'should call upsertTicketAndFetchGroups' , async ( ) => {
287287 populateGroupsStore ( ) ;
288288
289289 const updateProp = { _id : ticket . _id , title : 'updatedTicketName' } ;
You can’t perform that action at this time.
0 commit comments