mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 12:18:12 +00:00
This will make using this library as a drop in replacement easier. This commit also fixes some issues in the android progress implementation.
22 lines
485 B
Plaintext
22 lines
485 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`FastImage renders correctly. 1`] = `
|
|
<FastImageView
|
|
onFastImageError={undefined}
|
|
onFastImageLoad={undefined}
|
|
onFastImageLoadEnd={undefined}
|
|
onFastImageLoadStart={undefined}
|
|
onFastImageProgress={undefined}
|
|
resizeMode="cover"
|
|
source={
|
|
Object {
|
|
"headers": Object {
|
|
"token": "someToken",
|
|
},
|
|
"priority": "high",
|
|
"uri": "https://facebook.github.io/react/img/logo_og.png",
|
|
}
|
|
}
|
|
/>
|
|
`;
|