UNPKG

react-native-cross-components

Version:
1 lines 2.02 kB
{"file":"/Users/thomas/Source/react-native-core/source/components/CrossButton/CrossButton.test.tsx","mappings":";;;;;AAUA,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;AAC5B,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;AAX7B,kDAA0B;AAC1B,gEAAwC;AACxC,8EAA+C;AAE/C,SAAS,KAAK,CAAC,QAAgB,EAAE,KAAW;IAC1C,OAAO,6BAAY,CAAC,MAAM,CACxB,8BAAC,qBAAW,IAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,EAAE,GAAI,CACtE,CAAC;AACJ,CAAC;AAKD,QAAQ,CAAC,YAAY,EAAE,GAAG,EAAE;IAC1B;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,EAAE,GAAG,EAAE;QAC/B,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;YAClC,MAAM,OAAO,GAAG,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YACtC,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC;QAC7C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8BAA8B,EAAE,GAAG,EAAE;YACtC,MAAM,OAAO,GAAG,KAAK,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;YACxC,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC;QAC7C,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","names":[],"sources":["/Users/thomas/Source/react-native-core/source/components/CrossButton/CrossButton.test.tsx"],"sourcesContent":["import React from 'react';\nimport CrossButton from './CrossButton';\nimport TestRenderer from 'react-test-renderer';\n\nfunction setup(iconName: string, title?: any) {\n return TestRenderer.create(\n <CrossButton iconName={iconName} title={title} onPress={jest.fn()} />\n );\n}\n\njest.unmock('react-native');\njest.unmock('./CrossButton');\n\ndescribe('components', () => {\n /**\n * Test component rendering. Properties of children might be tested by importing their type:\n *\n * const busyProps = wrapper.find(BusyIndicator).props();\n * expect(busyProps.isBusy).toBe(false);\n */\n describe('<CrossButton />', () => {\n it('With title should render', () => {\n const wrapper = setup('home', 'home');\n expect(wrapper.toJSON()).toMatchSnapshot();\n });\n\n it('Without title should renders', () => {\n const wrapper = setup('map', undefined);\n expect(wrapper.toJSON()).toMatchSnapshot();\n });\n });\n});\n"],"version":3}