UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

11 lines (9 loc) 269 B
import React from 'react' import { render } from '@testing-library/react' import Image from '../image' describe('<Image/>', () => { it('should render', () => { const { container } = render(<Image src="mockURL" />) expect(container).toMatchSnapshot() }) })