Skip to content

Commit

Permalink
ISSUE #4689 - remove fit
Browse files Browse the repository at this point in the history
  • Loading branch information
Amantini1997 committed Jan 19, 2024
1 parent 370711a commit a581923
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/test/tickets/tickets.sagas.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('Tickets: sagas', () => {
expect(ticketsFromState).toEqual([]);
});

fit('should call fetchContainerTicket endpoint', async () => {
it('should call fetchContainerTicket endpoint', async () => {
mockServer
.get(`/teamspaces/${teamspace}/projects/${projectId}/containers/${modelId}/tickets/${ticket._id}`)
.reply(200, ticket);
Expand Down Expand Up @@ -197,7 +197,7 @@ describe('Tickets: sagas', () => {
expect(ticketsFromState).toEqual([]);
});

fit('should call fetchFederationTicket endpoint', async () => {
it('should call fetchFederationTicket endpoint', async () => {
mockServer
.get(`/teamspaces/${teamspace}/projects/${projectId}/federations/${modelId}/tickets/${ticket._id}`)
.reply(200, ticket);
Expand Down Expand Up @@ -283,7 +283,7 @@ describe('Tickets: sagas', () => {
});
describe('groups', () => {
beforeEach(populateTicketsStore);
fit('should call upsertTicketAndFetchGroups', async () => {
it('should call upsertTicketAndFetchGroups', async () => {
populateGroupsStore();

const updateProp = { _id: ticket._id, title: 'updatedTicketName' };
Expand Down

0 comments on commit a581923

Please sign in to comment.