diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-06 16:24:05 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-06 16:24:05 +0200 |
| commit | dfd816d1891545aa8ead982b57891858f1c82bb4 (patch) | |
| tree | 213e9cd2d706592c9e35c1b1acbf3d3cbe414a95 /src/components/molecules/images/responsive-image.test.tsx | |
| parent | 655ed38c6cd53a19c6ba1ebab5f2429441b99a58 (diff) | |
chore: add a ResponsiveImage component
Diffstat (limited to 'src/components/molecules/images/responsive-image.test.tsx')
| -rw-r--r-- | src/components/molecules/images/responsive-image.test.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/molecules/images/responsive-image.test.tsx b/src/components/molecules/images/responsive-image.test.tsx new file mode 100644 index 0000000..5452d28 --- /dev/null +++ b/src/components/molecules/images/responsive-image.test.tsx @@ -0,0 +1,18 @@ +import { render, screen } from '@test-utils'; +import ResponsiveImage from './responsive-image'; + +describe('ResponsiveImage', () => { + it('renders a responsive image', () => { + render( + <ResponsiveImage + src="http://placeimg.com/640/480" + alt="An alternative text" + width={640} + height={480} + /> + ); + expect( + screen.getByRole('img', { name: 'An alternative text' }) + ).toBeInTheDocument(); + }); +}); |
