* Patch react-native-navigation * Make navigation actions regular functions * Fix unhandled promise rejection warning * Missing semicolons * Mock navigation actions * Add unit tests for navigation actions * Place all patches in patches directory * Fix channel_info snapshot test
28 lines
505 B
Text
28 lines
505 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`AttachmentButton should match snapshot 1`] = `
|
|
<TouchableWithFeedbackIOS
|
|
onPress={[Function]}
|
|
style={
|
|
Object {
|
|
"alignItems": "center",
|
|
"height": 34,
|
|
"justifyContent": "center",
|
|
"width": 45,
|
|
}
|
|
}
|
|
type="opacity"
|
|
>
|
|
<Icon
|
|
allowFontScaling={false}
|
|
color="rgba(61,60,64,0.9)"
|
|
name="md-add"
|
|
size={30}
|
|
style={
|
|
Object {
|
|
"marginTop": 2,
|
|
}
|
|
}
|
|
/>
|
|
</TouchableWithFeedbackIOS>
|
|
`;
|