Skip to content

Commit

Permalink
feat(redmine 1245001): fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vapersmile committed Sep 19, 2023
1 parent e0d4d56 commit 6beb532
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { Button } from '@mantine/core';

import { renderWithProviders } from '../../../utils/tests';

import { TableTooltip } from './TableTooltip';

describe('TableTooltip', () => {
it('matches snapshot', () => {
const { container } = renderWithProviders(<TableTooltip />);
const { container } = renderWithProviders(
<TableTooltip element={<Button>test</Button>} text="test" />,
);
expect(container).toMatchSnapshot();
});
});

0 comments on commit 6beb532

Please sign in to comment.