aboutsummaryrefslogtreecommitdiff
path: root/mobile/hello-world/components/__tests__/StyledText-test.js
blob: 04453f8a7b498d3fb1aa3d2e401845be31de73e6 (plain)
1
2
3
4
5
6
7
8
9
10
import 'react-native';
import React from 'react';
import { MonoText } from '../StyledText';
import renderer from 'react-test-renderer';

it('renders correctly', () => {
  const tree = renderer.create(<MonoText>Snapshot test!</MonoText>).toJSON();

  expect(tree).toMatchSnapshot();
});