11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import * as React from 'react'
|
|
import renderer from 'react-test-renderer'
|
|
|
|
import { ThemedText } from '../ThemedText'
|
|
|
|
it(`renders correctly`, () => {
|
|
const tree = renderer.create(<ThemedText>Snapshot test!</ThemedText>).toJSON()
|
|
|
|
expect(tree).toMatchSnapshot()
|
|
})
|