Spaces:
Runtime error
Runtime error
File size: 269 Bytes
0924f9b |
1 2 3 4 5 6 7 8 9 10 11 |
import * as React from 'react';
import renderer from 'react-test-renderer';
import { MonoText } from '../StyledText';
it(`renders correctly`, () => {
const tree = renderer.create(<MonoText>Snapshot test!</MonoText>).toJSON();
expect(tree).toMatchSnapshot();
});
|