import React from 'react'; import renderer from 'react-test-renderer'; import { Flex } from './Flex'; describe('Flex', () => { it('renders with default props', () => { const tree = renderer .create(
1
2
, ) .toJSON(); expect(tree).toMatchInlineSnapshot(`
1
2
`); }); it('renders with custom props', () => { const tree = renderer .create(
1
2
, ) .toJSON(); expect(tree).toMatchInlineSnapshot(`
1
2
`); }); });