mattermost-mobile/app/components/progressive_image/__snapshots__/progressive_image.test.js.snap
Elias Nahum 8e314022ca
MM-24285 Use FastImage instead of Image (#4218)
* Enable ESLint no-unused-vars

* Use FastImage instead of Image

* Update fast-image patch to support multiple cookies

* Fix ESLint errors

* Have jest run timers for post_textbox tests

* Feedback review

* Update snapshots
2020-04-28 11:36:32 -04:00

133 lines
2.3 KiB
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`ProgressiveImage should match snapshot for BackgroundImage 1`] = `
<View
style={
Array [
Object {
"alignItems": "center",
"justifyContent": "center",
},
Object {},
]
}
>
<ImageBackground
resizeMode="cover"
source={
Object {
"uri": "https://images.com/image.png",
}
}
style={
Array [
Object {
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
},
undefined,
]
}
/>
</View>
`;
exports[`ProgressiveImage should match snapshot for Default Image 1`] = `
<View
style={
Array [
Object {
"alignItems": "center",
"justifyContent": "center",
},
Object {},
]
}
>
<AnimatedComponent
onError={[MockFunction]}
resizeMethod="auto"
resizeMode="contain"
source="https://images.com/image.png"
style={
Array [
Object {
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
},
undefined,
null,
]
}
/>
</View>
`;
exports[`ProgressiveImage should match snapshot for Image 1`] = `
<AnimatedComponent
style={
Array [
Object {
"alignItems": "center",
"justifyContent": "center",
},
Object {},
Object {
"backgroundColor": "rgba(61,60,64,NaN)",
},
]
}
>
<AnimatedComponent
onError={[MockFunction]}
resizeMethod="auto"
resizeMode="contain"
source={
Object {
"testUri": "../../../dist/assets/images/thumb.png",
}
}
style={
Array [
undefined,
Object {
"opacity": 0.5,
"tintColor": "#3d3c40",
},
]
}
/>
<AnimatedComponent
onError={[MockFunction]}
onLoadEnd={[Function]}
resizeMethod="auto"
resizeMode="contain"
source={
Object {
"uri": "https://images.com/image.png",
}
}
style={
Array [
Object {
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
},
undefined,
Object {
"opacity": 0,
},
]
}
/>
</AnimatedComponent>
`;