forked from Ivasoft/mattermost-mobile
63 lines
1.1 KiB
Plaintext
63 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`AnnouncementBanner should match snapshot 1`] = `
|
|
<AnimatedComponent
|
|
style={
|
|
Array [
|
|
Object {
|
|
"overflow": "hidden",
|
|
"paddingHorizontal": 10,
|
|
"position": "absolute",
|
|
"top": 0,
|
|
"width": "100%",
|
|
},
|
|
Object {
|
|
"backgroundColor": "#ddd",
|
|
"height": 0,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
<TouchableOpacity
|
|
activeOpacity={0.2}
|
|
onPress={[Function]}
|
|
style={
|
|
Object {
|
|
"alignItems": "center",
|
|
"flex": 1,
|
|
"flexDirection": "row",
|
|
}
|
|
}
|
|
>
|
|
<Text
|
|
ellipsizeMode="tail"
|
|
numberOfLines={1}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"flex": 1,
|
|
"fontSize": 14,
|
|
"marginRight": 5,
|
|
},
|
|
Object {
|
|
"color": "#fff",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
<RemoveMarkdown
|
|
value="Banner Text"
|
|
/>
|
|
</Text>
|
|
<Icon
|
|
allowFontScaling={false}
|
|
color="#fff"
|
|
name="info"
|
|
size={16}
|
|
/>
|
|
</TouchableOpacity>
|
|
</AnimatedComponent>
|
|
`;
|
|
|
|
exports[`AnnouncementBanner should match snapshot 2`] = `null`;
|