@devseed-ui/form
Version:
devseed UI Kit Form
16 lines (12 loc) • 361 B
JavaScript
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();
});
});