forked from Ivasoft/mattermost-mobile
* [MM-9454] Added jest-enzyme to devDependencies * [MM-9454] Refactored SendButton as component * [MM-9454] Added fade to SendButton * [MM-9454] Changed Fade to PureComponent
40 lines
567 B
Plaintext
40 lines
567 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Fade should render {opacity: 0} 1`] = `
|
|
<AnimatedComponent
|
|
style={
|
|
Object {
|
|
"opacity": 0,
|
|
"transform": Array [
|
|
Object {
|
|
"scale": 0,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
>
|
|
<Text>
|
|
text
|
|
</Text>
|
|
</AnimatedComponent>
|
|
`;
|
|
|
|
exports[`Fade should render {opacity: 1} 1`] = `
|
|
<AnimatedComponent
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
"transform": Array [
|
|
Object {
|
|
"scale": 1,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
>
|
|
<Text>
|
|
text
|
|
</Text>
|
|
</AnimatedComponent>
|
|
`;
|