Skip to content

Commit 0dfa138

Browse files
committed
Fix tests
1 parent 9d7605f commit 0dfa138

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/__tests__/__snapshots__/TriggeringView.js.snap

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ exports[`TriggeringView renders correctly by default 1`] = `
2525
"paddingTop": 45,
2626
}
2727
}>
28-
<View />
28+
<View
29+
collapsable={false}
30+
onLayout={[Function]} />
2931
</View>
3032
</ScrollView>
3133
<View
@@ -95,7 +97,9 @@ exports[`TriggeringView renders correctly by default 1`] = `
9597
`;
9698

9799
exports[`TriggeringView should display children 1`] = `
98-
<View>
100+
<View
101+
collapsable={false}
102+
onLayout={[Function]}>
99103
<Text
100104
accessible={true}
101105
allowFontScaling={true}
@@ -105,4 +109,8 @@ exports[`TriggeringView should display children 1`] = `
105109
</View>
106110
`;
107111

108-
exports[`TriggeringView should dont't crash without ImageHeaderScrollView 1`] = `<View />`;
112+
exports[`TriggeringView should dont't crash without ImageHeaderScrollView 1`] = `
113+
<View
114+
collapsable={false}
115+
onLayout={[Function]} />
116+
`;

0 commit comments

Comments
 (0)