Tech_Tracker_Expo/components/__tests__/ThemedText-test.tsx
gibbyb 2129df61bd Initial commit
Generated by create-expo-app 3.0.0.
2024-08-02 13:33:37 -05:00

11 lines
275 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();
});