1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`mocks out visibility: hidden by lowering the opacity 1`] = `
4<View
5  style={
6    {
7      "opacity": 0,
8    }
9  }
10/>
11`;
12
13exports[`replaces invalid position with "relative" 1`] = `
14<View
15  style={
16    {
17      "position": "relative",
18    }
19  }
20/>
21`;
22
23exports[`strips invalid style properties 1`] = `
24<View
25  style={
26    {
27      "position": "absolute",
28    }
29  }
30/>
31`;
32