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', () => {
86
86
expect ( ticketsFromState ) . toEqual ( [ ] ) ;
87
87
} ) ;
88
88
89
- fit ( 'should call fetchContainerTicket endpoint' , async ( ) => {
89
+ it ( 'should call fetchContainerTicket endpoint' , async ( ) => {
90
90
mockServer
91
91
. get ( `/teamspaces/${ teamspace } /projects/${ projectId } /containers/${ modelId } /tickets/${ ticket . _id } ` )
92
92
. reply ( 200 , ticket ) ;
@@ -197,7 +197,7 @@ describe('Tickets: sagas', () => {
197
197
expect ( ticketsFromState ) . toEqual ( [ ] ) ;
198
198
} ) ;
199
199
200
- fit ( 'should call fetchFederationTicket endpoint' , async ( ) => {
200
+ it ( 'should call fetchFederationTicket endpoint' , async ( ) => {
201
201
mockServer
202
202
. get ( `/teamspaces/${ teamspace } /projects/${ projectId } /federations/${ modelId } /tickets/${ ticket . _id } ` )
203
203
. reply ( 200 , ticket ) ;
@@ -283,7 +283,7 @@ describe('Tickets: sagas', () => {
283
283
} ) ;
284
284
describe ( 'groups' , ( ) => {
285
285
beforeEach ( populateTicketsStore ) ;
286
- fit ( 'should call upsertTicketAndFetchGroups' , async ( ) => {
286
+ it ( 'should call upsertTicketAndFetchGroups' , async ( ) => {
287
287
populateGroupsStore ( ) ;
288
288
289
289
const updateProp = { _id : ticket . _id , title : 'updatedTicketName' } ;
You can’t perform that action at this time.
0 commit comments