mattermost-mobile/app/screens/search/__snapshots__/modifier.test.js.snap
Elias Nahum dcaaaee44c
MM-30164 fix safe area insets (#4979)
* MM-30164 fix safe area insets

* Fix unit test setup mock for react-native-device-info

* Add insets for edit profile screen

* Fix about screen

* Fix theme screen

* Lock phone screen to portrait

* fix unit tests

* Fix autocomplete layout
2020-11-23 20:10:09 -03:00

84 lines
1.7 KiB
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Search RecentItem should match snapshot and respond to events 1`] = `
<ForwardRef
onPress={[Function]}
underlayColor="rgba(69,120,191,0.5)"
>
<View
style={
Object {
"alignItems": "center",
"flex": 1,
"flexDirection": "row",
"height": 68,
}
}
>
<View
style={
Object {
"flex": 1,
"flexDirection": "column",
"paddingHorizontal": 16,
}
}
>
<View
style={
Object {
"alignItems": "center",
"flexDirection": "row",
}
}
>
<View
style={
Object {
"alignItems": "center",
"backgroundColor": "rgba(61,60,64,0.08)",
"borderRadius": 4,
"fontWeight": "600",
"marginRight": 5,
"paddingHorizontal": 4,
"paddingVertical": 2,
}
}
>
<Text
style={
Object {
"color": "#3d3c40",
"fontSize": 10,
}
}
>
IN:
</Text>
</View>
<Text
style={
Object {
"color": "#3d3c40",
"fontSize": 15,
}
}
>
channel-name
</Text>
</View>
<Text
style={
Object {
"color": "rgba(61,60,64,0.5)",
"fontSize": 12,
"marginTop": 5,
}
}
>
to find posts in specific channels
</Text>
</View>
</View>
</ForwardRef>
`;