import * as React from 'react' import { Image } from 'react-native' import renderer from 'react-test-renderer' import MDLandscape from '../index' it('renders correctly with defaults', () => { const component = renderer.create( ).toJSON(); expect(component).toMatchSnapshot(); }) it('renders correctly with fullscreen', () => { const component = renderer.create( ).toJSON(); expect(component).toMatchSnapshot(); })