diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:53:23 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:53:23 +0200 |
| commit | 65da7e1ddaea17cb1391ce2bde5f4345acd7b4ad (patch) | |
| tree | 1a05a2d83a5b726a58ebd49bb7317e94cce49c4d /src/components/atoms/icons/career.test.tsx | |
| parent | 3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 (diff) | |
chore: add a career icon component
Diffstat (limited to 'src/components/atoms/icons/career.test.tsx')
| -rw-r--r-- | src/components/atoms/icons/career.test.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/career.test.tsx b/src/components/atoms/icons/career.test.tsx new file mode 100644 index 0000000..62ffc14 --- /dev/null +++ b/src/components/atoms/icons/career.test.tsx @@ -0,0 +1,9 @@ +import { render } from '@test-utils'; +import Career from './career'; + +describe('Career', () => { + it('renders a Career icon', () => { + const { container } = render(<Career />); + expect(container).toBeDefined(); + }); +}); |
