1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/components/__tests__/__snapshots__/ButtonCustom.test.tsx.snap

61 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<ButtonCustom /> renders correctly 1`] = `
<View
accessibilityState={
{
"busy": undefined,
"checked": undefined,
"disabled": undefined,
"expanded": undefined,
"selected": undefined,
}
}
accessibilityValue={
{
"max": undefined,
"min": undefined,
"now": undefined,
"text": undefined,
}
}
accessible={true}
collapsable={false}
focusable={true}
onBlur={[Function]}
onClick={[Function]}
onFocus={[Function]}
onResponderGrant={[Function]}
onResponderMove={[Function]}
onResponderRelease={[Function]}
onResponderTerminate={[Function]}
onResponderTerminationRequest={[Function]}
onStartShouldSetResponder={[Function]}
style={
[
{
"backgroundColor": "#152B5D",
"borderColor": "black",
"borderRadius": 10,
"borderWidth": 1,
"marginTop": 10,
"padding": 10,
},
undefined,
]
}
>
<Text
style={
{
"color": "white",
"fontSize": 15,
"textAlign": "center",
}
}
>
Awesome Button!
</Text>
</View>
`;