Skip to content

Commit

Permalink
fix: proposal success form test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Nov 7, 2024
1 parent 21e3959 commit bafc402
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('ProposalSuccess Component', () => {
expect(screen.getByText(mockProps.formData.metadata.summary)).toBeDefined();
expect(screen.getByText(mockProps.formData.metadata.details)).toBeDefined();
mockProps.formData.messages.forEach(message => {
expect(screen.getByText(`Type: ${message.type}`)).toBeDefined();
expect(screen.getByText(`${message.type}`)).toBeDefined();
});
});

Expand Down

0 comments on commit bafc402

Please sign in to comment.