Skip to content

Commit

Permalink
tests: remove useless snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Dec 18, 2019
1 parent 100147f commit 24d126b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/core/src/__snapshots__/convert.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -84,43 +84,43 @@ export default SvgComponent
"
`;

exports[`convert config should support options { native: true } 1`] = `
exports[`convert config should support options { native: { expo: true } } 1`] = `
"import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
import { Svg } from 'expo'
const SvgComponent = props => (
<Svg width={88} height={88} {...props}>
<G
<Svg.G
stroke=\\"#063855\\"
strokeWidth={2}
fill=\\"none\\"
fillRule=\\"evenodd\\"
strokeLinecap=\\"square\\"
>
<Path d=\\"M51 37L37 51M51 51L37 37\\" />
</G>
<Svg.Path d=\\"M51 37L37 51M51 51L37 37\\" />
</Svg.G>
</Svg>
)
export default SvgComponent
"
`;

exports[`convert config should support options { native: { expo: true } } 1`] = `
exports[`convert config should support options { native: true } 1`] = `
"import React from 'react'
import { Svg } from 'expo'
import Svg, { G, Path } from 'react-native-svg'
const SvgComponent = props => (
<Svg width={88} height={88} {...props}>
<Svg.G
<G
stroke=\\"#063855\\"
strokeWidth={2}
fill=\\"none\\"
fillRule=\\"evenodd\\"
strokeLinecap=\\"square\\"
>
<Svg.Path d=\\"M51 37L37 51M51 51L37 37\\" />
</Svg.G>
<Path d=\\"M51 37L37 51M51 51L37 37\\" />
</G>
</Svg>
)
Expand Down Expand Up @@ -320,7 +320,7 @@ export default SvgComponent
"
`;

exports[`convert config should support options { template: { [Function: template] [length]: 1, [name]: 'template' } } 1`] = `
exports[`convert config should support options { template: [Function: template] { [length]: 1, [name]: 'template' } } 1`] = `
"const noop = () => null
export default noop
Expand Down

0 comments on commit 24d126b

Please sign in to comment.