react-native-material-textfield
Version:
35 lines (26 loc) • 615 B
JavaScript
import 'react-native';
import React from 'react';
import renderer from 'react-test-renderer';
import Affix from '.';
/* eslint-env jest */
const props = {
fontSize: 16,
baseColor: 'blue',
animationDuration: 225,
};
const prefix = 'a';
const suffix = 'z';
it('renders prefix', () => {
let affix = renderer
.create(<Affix type='prefix' {...props}>{prefix}</Affix>)
.toJSON();
expect(affix)
.toMatchSnapshot();
});
it('renders suffix', () => {
let affix = renderer
.create(<Affix type='suffix' {...props}>{suffix}</Affix>)
.toJSON();
expect(affix)
.toMatchSnapshot();
});