diff options
Diffstat (limited to 'src/components/atoms/icons/envelop.test.tsx')
| -rw-r--r-- | src/components/atoms/icons/envelop.test.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/envelop.test.tsx b/src/components/atoms/icons/envelop.test.tsx new file mode 100644 index 0000000..072dc85 --- /dev/null +++ b/src/components/atoms/icons/envelop.test.tsx @@ -0,0 +1,9 @@ +import { render } from '@test-utils'; +import Envelop from './envelop'; + +describe('Envelop', () => { + it('renders an envelop icon', () => { + const { container } = render(<Envelop />); + expect(container).toBeDefined(); + }); +}); |
