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

describe('Arrow', () => {
  it('renders an arrow icon oriented to the right', () => {
    const { container } = render(<Arrow direction="right" />);
    expect(container).toBeDefined();
  });
});