mattermost-mobile/app/components/widgets/settings/__snapshots__/radio_setting.test.js.snap
Elias Nahum ada6be9b7a
Update dependencies (#5686)
* Update dependencies

* Fix unsigned builds
2021-09-22 13:54:12 -03:00

176 lines
3.4 KiB
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`components/widgets/settings/RadioSetting should match snapshot when error is present 1`] = `
<View>
<View
style={
Object {
"flexDirection": "row",
"marginBottom": 10,
"marginTop": 15,
}
}
>
<Text
style={
Object {
"color": "#3f4350",
"fontSize": 14,
"marginLeft": 15,
}
}
>
some label
</Text>
<Text
style={
Object {
"color": "#d24b4e",
"fontSize": 14,
}
}
>
*
</Text>
</View>
<View
style={
Object {
"backgroundColor": "#ffffff",
"borderBottomColor": "rgba(63,67,80,0.1)",
"borderBottomWidth": 1,
"borderTopColor": "rgba(63,67,80,0.1)",
"borderTopWidth": 1,
}
}
>
<TouchableOpacity
onPress={[Function]}
>
<View
style={
Object {
"alignItems": "center",
"flexDirection": "row",
"paddingHorizontal": 15,
}
}
>
<View
style={
Object {
"alignItems": "center",
"flex": 1,
"flexDirection": "row",
"height": 45,
}
}
>
<Text>
this is engineering
</Text>
</View>
</View>
<View
style={
Object {
"backgroundColor": "rgba(63,67,80,0.1)",
"flex": 1,
"height": 1,
"marginLeft": 15,
}
}
/>
</TouchableOpacity>
<TouchableOpacity
onPress={[Function]}
>
<View
style={
Object {
"alignItems": "center",
"flexDirection": "row",
"paddingHorizontal": 15,
}
}
>
<View
style={
Object {
"alignItems": "center",
"flex": 1,
"flexDirection": "row",
"height": 45,
}
}
>
<Text>
this is sales
</Text>
</View>
</View>
<View
style={
Object {
"backgroundColor": "rgba(63,67,80,0.1)",
"flex": 1,
"height": 1,
"marginLeft": 15,
}
}
/>
</TouchableOpacity>
<TouchableOpacity
onPress={[Function]}
>
<View
style={
Object {
"alignItems": "center",
"flexDirection": "row",
"paddingHorizontal": 15,
}
}
>
<View
style={
Object {
"alignItems": "center",
"flex": 1,
"flexDirection": "row",
"height": 45,
}
}
>
<Text>
this is administration
</Text>
</View>
<CompassIcon
name="check"
style={
Object {
"color": "#386fe5",
"fontSize": 12,
}
}
/>
</View>
</TouchableOpacity>
</View>
<View>
<Text
style={
Object {
"color": "#d24b4e",
"fontSize": 12,
"marginHorizontal": 15,
"marginTop": 10,
}
}
>
some error message
</Text>
</View>
</View>
`;