Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Jan 14, 2025
1 parent a5ad307 commit f439dc9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions components/factory/forms/__tests__/BurnForm.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@ describe('BurnForm Component', () => {
expect(screen.getByText('CIRCULATING SUPPLY')).toBeInTheDocument();
});

test('renders multi burn when token is mfx', () => {
renderWithProps({ denom: mockMfxDenom });
expect(screen.getByLabelText('multi-burn-button')).toBeInTheDocument();
});

test('renders not affiliated message when not admin and token is mfx', () => {
renderWithProps({ isAdmin: false, denom: mockMfxDenom });
expect(
Expand Down
5 changes: 0 additions & 5 deletions components/factory/forms/__tests__/MintForm.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,4 @@ describe('MintForm Component', () => {
expect(mintButton).toBeEnabled();
});
});

test('renders multi mint button when token is mfx', () => {
renderWithProps({ denom: mockMfxDenom });
expect(screen.getByLabelText('multi-mint-button')).toBeInTheDocument();
});
});

0 comments on commit f439dc9

Please sign in to comment.