aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/career.test.tsx
blob: 0c47262abe29df6bacb8a1596df6e952733d9abb (plain)
1
2
3
4
5
6
7
8
9
import { render } from '../../../../tests/utils';
import Career from './career';

describe('Career', () => {
  it('renders a Career icon', () => {
    const { container } = render(<Career />);
    expect(container).toBeDefined();
  });
});