1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

Fix: tests

This commit is contained in:
ivaosthu 2019-05-04 06:31:12 +02:00
parent c65d335b25
commit f7ccae9e75

View File

@ -1,11 +1,14 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders correctly with one strategy 1`] = ` exports[`renders correctly with one strategy 1`] = `
<react-mdl-Grid <react-mdl-Card
className="mdl-color--white" className="fullwidth"
> shadow={0}
<react-mdl-Cell style={
col={12} Object {
"overflow": "visible",
}
}
> >
<div <div
style={ style={
@ -73,16 +76,18 @@ exports[`renders correctly with one strategy 1`] = `
/> />
</react-mdl-ListItem> </react-mdl-ListItem>
</react-mdl-List> </react-mdl-List>
</react-mdl-Cell> </react-mdl-Card>
</react-mdl-Grid>
`; `;
exports[`renders correctly with one strategy without permissions 1`] = ` exports[`renders correctly with one strategy without permissions 1`] = `
<react-mdl-Grid <react-mdl-Card
className="mdl-color--white" className="fullwidth"
> shadow={0}
<react-mdl-Cell style={
col={12} Object {
"overflow": "visible",
}
}
> >
<div <div
style={ style={
@ -133,6 +138,5 @@ exports[`renders correctly with one strategy without permissions 1`] = `
</react-mdl-ListItem> </react-mdl-ListItem>
</react-mdl-List> </react-mdl-List>
</react-mdl-Cell> </react-mdl-Card>
</react-mdl-Grid>
`; `;