34 lines
505 B
Plaintext
34 lines
505 B
Plaintext
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
|
||
|
|
exports[`[Component] Spacers renders HorizontalSpacer correctly 1`] = `
|
||
|
|
<View
|
||
|
|
pointerEvents="none"
|
||
|
|
style={
|
||
|
|
[
|
||
|
|
{
|
||
|
|
"width": 12,
|
||
|
|
},
|
||
|
|
undefined,
|
||
|
|
]
|
||
|
|
}
|
||
|
|
testID="horizontal-spacer"
|
||
|
|
widthUnits={3}
|
||
|
|
/>
|
||
|
|
`;
|
||
|
|
|
||
|
|
exports[`[Component] Spacers renders Vertical correctly 1`] = `
|
||
|
|
<View
|
||
|
|
heightUnits={3}
|
||
|
|
pointerEvents="none"
|
||
|
|
style={
|
||
|
|
[
|
||
|
|
{
|
||
|
|
"height": 12,
|
||
|
|
},
|
||
|
|
undefined,
|
||
|
|
]
|
||
|
|
}
|
||
|
|
testID="vertical-spacer"
|
||
|
|
/>
|
||
|
|
`;
|