Skip to content

Commit e6140de

Browse files
committed
chore: Removed tests that where added by mistake.
1 parent 92aef3f commit e6140de

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
import React from 'react';
23
import { render } from '@testing-library/react';
34
import TagCount from './TagCount';
45

@@ -11,13 +12,4 @@ describe('TagCount component', () => {
1112
it('should render a tag count of 11', () => {
1213
expect(render(<TagCount count={11} />)).toMatchSnapshot();
1314
});
14-
});
15-
it('should have the correct class when rendered', () => {
16-
const { container } = render(<TagCount />);
17-
expect(container.firstChild).toHaveClass('buttonTagCount');
18-
});
19-
20-
it('should have the correct class when count is provided', () => {
21-
const { container } = render(<TagCount count={5} />);
22-
expect(container.firstChild).toHaveClass('buttonTagCount');
23-
});
15+
});

0 commit comments

Comments
 (0)