Skip to content

Commit a581923

Browse files
committed
ISSUE #4689 - remove fit
1 parent 370711a commit a581923

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/test/tickets/tickets.sagas.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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' };

0 commit comments

Comments
 (0)