blob: ed1d1e233821bf392e1ac5bf5a1ad8c82fab2c77 (
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();
});
});
|