diff options
Diffstat (limited to 'src/components/atoms/icons/arrow.test.tsx')
| -rw-r--r-- | src/components/atoms/icons/arrow.test.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/atoms/icons/arrow.test.tsx b/src/components/atoms/icons/arrow.test.tsx index 01813ce..502dcc1 100644 --- a/src/components/atoms/icons/arrow.test.tsx +++ b/src/components/atoms/icons/arrow.test.tsx @@ -2,8 +2,8 @@ import { render } from '@test-utils'; import Arrow from './arrow'; describe('Arrow', () => { - it('renders an arrow icon', () => { - const { container } = render(<Arrow />); + it('renders an arrow icon oriented to the right', () => { + const { container } = render(<Arrow direction="right" />); expect(container).toBeDefined(); }); }); |
