src/components/AnimationWrapper/__snapshots__/AnimationWrapper.spec.ts.snap
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`jest-auto-snapshots > AnimationWrapper Matches snapshot when boolean prop "dismissing" is set to: "false" 1`] = `
<styled.div
align="jest-auto-snapshots String Fixture"
className="stageIn"
duration={1}
easing="jest-auto-snapshots String Fixture"
justify="jest-auto-snapshots String Fixture"
stageInAnimation={Object {}}
stageOutAnimation={Object {}}
>
<NodeFixture />
</styled.div>
`;
exports[`jest-auto-snapshots > AnimationWrapper Matches snapshot when passed all props 1`] = `
<styled.div
align="jest-auto-snapshots String Fixture"
className="stageOut"
duration={1}
easing="jest-auto-snapshots String Fixture"
justify="jest-auto-snapshots String Fixture"
stageInAnimation={Object {}}
stageOutAnimation={Object {}}
>
<NodeFixture />
</styled.div>
`;
exports[`jest-auto-snapshots > AnimationWrapper Matches snapshot when passed only required props 1`] = `
<styled.div
align="center"
className="stageIn"
duration={300}
easing="cubic-bezier(0.25, 1, 0.5, 1)"
justify="center"
stageInAnimation={Object {}}
stageOutAnimation={Object {}}
>
<NodeFixture />
</styled.div>
`;