Skip to content

Commit

Permalink
adding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandes-natanael committed Sep 9, 2024
1 parent 3305ced commit d4623ea
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/components/studio/editJourney.form.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { JourneyForm } from '@/components/forms/journey.form';
import { render } from '@testing-library/react';

describe('JourneyForm', () => {
it('deve renderizar o componente (teste falso)', () => {
render(<JourneyForm updateJourney={() => {}} journey={{ _id: '1234', title: 'Jornada', description: 'Descrição' }} setDialog={() => {}} />);
expect(true).toBe(true);
});
});

0 comments on commit d4623ea

Please sign in to comment.