@swrve/core
Version:
Core set of Swrve UI Components
11 lines (9 loc) • 318 B
JavaScript
import React from 'react'
import { render } from '@testing-library/react'
import SquareIconButton from '../square-icon-button'
describe('<SquareIconButton />', () => {
it('should render', () => {
const { container } = render(<SquareIconButton iconName="edit" />)
expect(container).toMatchSnapshot()
})
})