// @ts-ignore
import { configure, shallow } from 'enzyme';
// @ts-ignore
import Adapter from 'enzyme-adapter-react-16';
import * as React from 'react';
import { Text } from 'react-native';
import renderer from 'react-test-renderer';
import MDFieldItem from '../index';
configure({ adapter: new Adapter() });
it('renders correctly with defaults', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with title', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with placeholder', () => {
const component = renderer
.create()
.toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with content', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with addon', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with solid', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with arrow', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with disabled', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with alignRight', () => {
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with left', () => {
const component = renderer
.create(test} />)
.toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with onPress', () => {
const component = renderer
.create(
{
console.log(value);
}}
/>
)
.toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with empty style', () => {
// @ts-ignore
const component = renderer.create().toJSON();
expect(component).toMatchSnapshot();
});
it('renders correctly with child', () => {
const component = renderer
.create(这是子内容区域} />)
.toJSON();
expect(component).toMatchSnapshot();
});