The actual snapshot is saved in test.js.snap
.
Generated by AVA.
Snapshot 1
`␊
import sys from 'system-components'␊
␊
␊
export const Heading = sys(␊
{␊
"m": 0,␊
"fontSize": 32,␊
"color": "tomato",␊
"is": "h2"␊
},␊
␊
␊
)␊
Heading.displayName = 'Heading'␊
␊
␊
␊
export const Box = sys(␊
{},␊
␊
␊
)␊
Box.displayName = 'Box'␊
␊
␊
␊
export const Button = sys(␊
{␊
"is": "button"␊
},␊
'appearance:none;',␊
␊
)␊
Button.displayName = 'Button'␊
␊
␊
export default {␊
Heading,␊
Box,␊
Button␊
}`