Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
dahliacreative committed Jul 17, 2019
1 parent 91ea334 commit 59b43c1
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/__snapshots__/spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

exports[`<Collapsable/> Closes 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={false}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -12,7 +13,7 @@ exports[`<Collapsable/> Closes 1`] = `
Object {
"height": 500,
"overflow": "hidden",
"transition": "height 0.5s",
"transition": "height 0.5s ease-in-out",
}
}
>
Expand All @@ -33,6 +34,7 @@ exports[`<Collapsable/> Closes 1`] = `

exports[`<Collapsable/> Opens 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={true}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -43,7 +45,7 @@ exports[`<Collapsable/> Opens 1`] = `
Object {
"height": 0,
"overflow": "hidden",
"transition": "height 0s",
"transition": "height 0s ease-in-out",
}
}
>
Expand All @@ -64,6 +66,7 @@ exports[`<Collapsable/> Opens 1`] = `

exports[`<Collapsable/> Renders open by default 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={true}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -74,7 +77,7 @@ exports[`<Collapsable/> Renders open by default 1`] = `
Object {
"height": 500,
"overflow": "hidden",
"transition": "height 0.5s",
"transition": "height 0.5s ease-in-out",
}
}
>
Expand All @@ -95,6 +98,7 @@ exports[`<Collapsable/> Renders open by default 1`] = `

exports[`<Collapsable/> Renders without crashing 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={false}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -105,7 +109,7 @@ exports[`<Collapsable/> Renders without crashing 1`] = `
Object {
"height": 0,
"overflow": "hidden",
"transition": "height 0s",
"transition": "height 0s ease-in-out",
}
}
>
Expand All @@ -126,6 +130,7 @@ exports[`<Collapsable/> Renders without crashing 1`] = `

exports[`<Collapsable/> Respects maxAnimationDuration 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={true}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -136,7 +141,7 @@ exports[`<Collapsable/> Respects maxAnimationDuration 1`] = `
Object {
"height": 0,
"overflow": "hidden",
"transition": "height 0s",
"transition": "height 0s ease-in-out",
}
}
>
Expand All @@ -157,6 +162,7 @@ exports[`<Collapsable/> Respects maxAnimationDuration 1`] = `

exports[`<Collapsable/> Respects minAnimationDuration 1`] = `
<Collapsable
easing="ease-in-out"
isOpen={true}
maxAnimationDuration={1}
minAnimationDuration={0.3}
Expand All @@ -167,7 +173,7 @@ exports[`<Collapsable/> Respects minAnimationDuration 1`] = `
Object {
"height": 0,
"overflow": "hidden",
"transition": "height 0s",
"transition": "height 0s ease-in-out",
}
}
>
Expand Down

0 comments on commit 59b43c1

Please sign in to comment.