UNPKG

@devseed-ui/form

Version:
16 lines (12 loc) 361 B
import React from 'react'; import { cleanup } from '@testing-library/react'; import { renderWithTheme } from '../../../../test/_setup-theme-provider'; import Form from '.'; afterAll(cleanup); describe('<Form />', () => { it('renders <Form />', () => { expect( renderWithTheme(<Form>content</Form>).asFragment() ).toMatchSnapshot(); }); });