mattermost-mobile/app/components/progressive_image/__snapshots__/progressive_image.test.js.snap
Elias Nahum 0504a962a1
MM-22379 & MM-22598 Boost perf by using FastImage cache in favor of ImageCacheManager (#3971)
* MM-22379 & MM-22598 Boost perf by using FastImage cache in favor of ImageCacheManager

* Code review
2020-02-27 16:29:51 -03:00

52 lines
970 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`ProgressiveImage should match snapshot 1`] = `
<View
style={Object {}}
>
<AnimatedComponent
blurRadius={5}
onError={[MockFunction]}
onLoadEnd={[Function]}
resizeMethod="auto"
resizeMode="contain"
source={
Object {
"headers": Object {
"Authorization": "Bearer ",
},
"uri": "https://images.com/image.png",
}
}
style={
Array [
Object {
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
},
undefined,
]
}
/>
<AnimatedComponent
style={
Array [
Object {
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
},
Object {
"backgroundColor": "#ffffff",
"opacity": 0.8,
},
]
}
/>
</View>
`;