src/components/__snapshots__/CheckBox.test.js.snap
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders correctly 1`] = `
<Touchable
accessibilityComponentType="radiobutton_unchecked"
accessibilityTraits={
Array [
"button",
]
}
delayPressIn={50}
onPress={[Function]}
style={
Array [
Object {
"alignItems": "center",
"flexDirection": "row",
"justifyContent": "space-between",
},
Object {},
]
}
>
<Text
color="blackColor"
markdown={false}
markdownStyle={Object {}}
style={
Object {
"flex": 1,
}
}
type="text"
>
Bananas
</Text>
<Component
source={1}
/>
</Touchable>
`;
exports[`renders correctly when checked 1`] = `
<Touchable
accessibilityComponentType="radiobutton_checked"
accessibilityTraits={
Array [
"button",
"selected",
]
}
delayPressIn={50}
onPress={[Function]}
style={
Array [
Object {
"alignItems": "center",
"flexDirection": "row",
"justifyContent": "space-between",
},
Object {},
]
}
>
<Text
color="blackColor"
markdown={false}
markdownStyle={Object {}}
style={
Object {
"flex": 1,
}
}
type="text"
>
Bananas
</Text>
<Component
source={1}
/>
</Touchable>
`;