react-native-cross-components
Version:
Beautiful React-Native components using RN Paper by Callstack
1 lines • 3.14 kB
Source Map (JSON)
{"file":"/Users/thomas/Source/react-native-core/source/components/buttons/CrossButton.test.tsx","mappings":";;;;;AAWA,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;AAC5B,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;AAZ7B,kDAA0B;AAC1B,gEAAwC;AACxC,wFAAgE;AAChE,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;;;;;;OAMG;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;QAEH,EAAE,CAAC,kDAAkD,EAAE,GAAG,EAAE;YAC1D,MAAM,OAAO,GAAG,KAAK,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;YACxC,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,qBAAW,CAAC,MAAM,CAAC,CAAC;YAC1D,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC;QAC9B,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,gEAAgE,EAAE,GAAG,EAAE;YACxE,MAAM,OAAO,GAAG,KAAK,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;YACxC,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,qBAAW,CAAC,MAAM,CAAC,CAAC;YAC1D,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;YACf,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACvC,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","names":[],"sources":["/Users/thomas/Source/react-native-core/source/components/buttons/CrossButton.test.tsx"],"sourcesContent":["import React from 'react';\nimport CrossButton from './CrossButton';\nimport FontAwesome from 'react-native-vector-icons/FontAwesome';\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 btn = wrapper.root.findByType(Button);\n expect(btn.props.title).toBe('child');\n ```\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 it('Without title should have <FontAwesome.Button />', () => {\n const wrapper = setup('map', undefined);\n const child = wrapper.root.findByType(FontAwesome.Button);\n expect(child).toBeDefined();\n });\n\n it('Without title should have <FontAwesome.Button /> with iconName', () => {\n const wrapper = setup('map', undefined);\n const child = wrapper.root.findByType(FontAwesome.Button);\n console.log('')\n expect(child.props.name).toBe('map');\n });\n });\n});\n"],"version":3}