Skip to content

Commit 6730f19

Browse files
author
Harun.Karahan
committed
chore: snapshot update
1 parent 58e8826 commit 6730f19

1 file changed

Lines changed: 30 additions & 6 deletions

File tree

packages/pluggableWidgets/safe-area-view-native/src/__tests__/__snapshots__/SafeAreaView.spec.tsx.snap

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

33
exports[`Safe area view renders with content 1`] = `
4-
<View
4+
<RNCSafeAreaView
5+
edges={
6+
{
7+
"bottom": "additive",
8+
"left": "additive",
9+
"right": "additive",
10+
"top": "additive",
11+
}
12+
}
513
pointerEvents="box-none"
614
style={
715
{
@@ -23,11 +31,19 @@ exports[`Safe area view renders with content 1`] = `
2331
Content
2432
</Text>
2533
</View>
26-
</View>
34+
</RNCSafeAreaView>
2735
`;
2836

2937
exports[`Safe area view renders with custom styling 1`] = `
30-
<View
38+
<RNCSafeAreaView
39+
edges={
40+
{
41+
"bottom": "additive",
42+
"left": "additive",
43+
"right": "additive",
44+
"top": "additive",
45+
}
46+
}
3147
pointerEvents="box-none"
3248
style={
3349
{
@@ -50,11 +66,19 @@ exports[`Safe area view renders with custom styling 1`] = `
5066
Content
5167
</Text>
5268
</View>
53-
</View>
69+
</RNCSafeAreaView>
5470
`;
5571

5672
exports[`Safe area view renders without content 1`] = `
57-
<View
73+
<RNCSafeAreaView
74+
edges={
75+
{
76+
"bottom": "additive",
77+
"left": "additive",
78+
"right": "additive",
79+
"top": "additive",
80+
}
81+
}
5882
pointerEvents="box-none"
5983
style={
6084
{
@@ -72,5 +96,5 @@ exports[`Safe area view renders without content 1`] = `
7296
}
7397
}
7498
/>
75-
</View>
99+
</RNCSafeAreaView>
76100
`;

0 commit comments

Comments
 (0)