@colimuca123/nativewind 4.2.2-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/LICENSE +21 -0
  2. package/README.OpenSource +11 -0
  3. package/babel.js +1 -0
  4. package/dist/doctor.d.ts +1 -0
  5. package/dist/doctor.js +21 -0
  6. package/dist/doctor.js.map +1 -0
  7. package/dist/index.d.ts +4 -0
  8. package/dist/index.js +20 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/metro/common.d.ts +4 -0
  11. package/dist/metro/common.js +8 -0
  12. package/dist/metro/common.js.map +1 -0
  13. package/dist/metro/index.d.ts +15 -0
  14. package/dist/metro/index.js +47 -0
  15. package/dist/metro/index.js.map +1 -0
  16. package/dist/metro/picocolors.d.ts +26 -0
  17. package/dist/metro/picocolors.js +53 -0
  18. package/dist/metro/picocolors.js.map +1 -0
  19. package/dist/metro/tailwind/index.d.ts +5 -0
  20. package/dist/metro/tailwind/index.js +25 -0
  21. package/dist/metro/tailwind/index.js.map +1 -0
  22. package/dist/metro/tailwind/types.d.ts +8 -0
  23. package/dist/metro/tailwind/types.js +3 -0
  24. package/dist/metro/tailwind/types.js.map +1 -0
  25. package/dist/metro/tailwind/v3/child.d.ts +0 -0
  26. package/dist/metro/tailwind/v3/child.js +45 -0
  27. package/dist/metro/tailwind/v3/child.js.map +1 -0
  28. package/dist/metro/tailwind/v3/index.d.ts +6 -0
  29. package/dist/metro/tailwind/v3/index.js +81 -0
  30. package/dist/metro/tailwind/v3/index.js.map +1 -0
  31. package/dist/metro/typescript.d.ts +1 -0
  32. package/dist/metro/typescript.js +46 -0
  33. package/dist/metro/typescript.js.map +1 -0
  34. package/dist/stylesheet.d.ts +5 -0
  35. package/dist/stylesheet.js +25 -0
  36. package/dist/stylesheet.js.map +1 -0
  37. package/dist/tailwind/color.d.ts +4 -0
  38. package/dist/tailwind/color.js +25 -0
  39. package/dist/tailwind/color.js.map +1 -0
  40. package/dist/tailwind/common.d.ts +2 -0
  41. package/dist/tailwind/common.js +24 -0
  42. package/dist/tailwind/common.js.map +1 -0
  43. package/dist/tailwind/dark-mode.d.ts +4 -0
  44. package/dist/tailwind/dark-mode.js +48 -0
  45. package/dist/tailwind/dark-mode.js.map +1 -0
  46. package/dist/tailwind/index.d.ts +0 -0
  47. package/dist/tailwind/index.js +13 -0
  48. package/dist/tailwind/index.js.map +1 -0
  49. package/dist/tailwind/native.d.ts +3 -0
  50. package/dist/tailwind/native.js +265 -0
  51. package/dist/tailwind/native.js.map +1 -0
  52. package/dist/tailwind/prop-modifier.d.ts +4 -0
  53. package/dist/tailwind/prop-modifier.js +13 -0
  54. package/dist/tailwind/prop-modifier.js.map +1 -0
  55. package/dist/tailwind/safe-area.d.ts +4 -0
  56. package/dist/tailwind/safe-area.js +216 -0
  57. package/dist/tailwind/safe-area.js.map +1 -0
  58. package/dist/tailwind/shadows.d.ts +4 -0
  59. package/dist/tailwind/shadows.js +79 -0
  60. package/dist/tailwind/shadows.js.map +1 -0
  61. package/dist/tailwind/switch.d.ts +8 -0
  62. package/dist/tailwind/switch.js +51 -0
  63. package/dist/tailwind/switch.js.map +1 -0
  64. package/dist/tailwind/translate.d.ts +2 -0
  65. package/dist/tailwind/translate.js +40 -0
  66. package/dist/tailwind/translate.js.map +1 -0
  67. package/dist/tailwind/verify.d.ts +4 -0
  68. package/dist/tailwind/verify.js +22 -0
  69. package/dist/tailwind/verify.js.map +1 -0
  70. package/dist/tailwind/web.d.ts +3 -0
  71. package/dist/tailwind/web.js +40 -0
  72. package/dist/tailwind/web.js.map +1 -0
  73. package/dist/test.d.ts +373 -0
  74. package/dist/test.js +161 -0
  75. package/dist/test.js.map +1 -0
  76. package/dist/theme.d.ts +1 -0
  77. package/dist/theme.js +9 -0
  78. package/dist/theme.js.map +1 -0
  79. package/expo-snack.js +71 -0
  80. package/jsx-dev-runtime/index.d.ts +1 -0
  81. package/jsx-dev-runtime/index.js +1 -0
  82. package/jsx-runtime/index.d.ts +1 -0
  83. package/jsx-runtime/index.js +1 -0
  84. package/metro/package.json +1 -0
  85. package/package.json +75 -0
  86. package/preset/package.json +3 -0
  87. package/src/__tests__/README.md +3 -0
  88. package/src/__tests__/accessibility.tsx +41 -0
  89. package/src/__tests__/backgrounds.tsx +239 -0
  90. package/src/__tests__/borders.tsx +355 -0
  91. package/src/__tests__/container-queries.tsx +59 -0
  92. package/src/__tests__/custom-theme.tsx +45 -0
  93. package/src/__tests__/custom.tsx +17 -0
  94. package/src/__tests__/dark-mode.ios.tsx +251 -0
  95. package/src/__tests__/doctor.tsx +13 -0
  96. package/src/__tests__/effects.ios.tsx +230 -0
  97. package/src/__tests__/elevation.tsx +22 -0
  98. package/src/__tests__/filters.tsx +201 -0
  99. package/src/__tests__/flexbox-grid.tsx +670 -0
  100. package/src/__tests__/groups.tsx +134 -0
  101. package/src/__tests__/interactivity.tsx +547 -0
  102. package/src/__tests__/layout.tsx +854 -0
  103. package/src/__tests__/modifier-{}.tsx +71 -0
  104. package/src/__tests__/platform-modifiers-test.ios.tsx +34 -0
  105. package/src/__tests__/preset.tsx +9 -0
  106. package/src/__tests__/reusing-styles.tsx +44 -0
  107. package/src/__tests__/safe-area.test.ios.tsx +427 -0
  108. package/src/__tests__/sizing.tsx +241 -0
  109. package/src/__tests__/spacing.tsx +106 -0
  110. package/src/__tests__/states.tsx +145 -0
  111. package/src/__tests__/svg.tsx +25 -0
  112. package/src/__tests__/tables.tsx +103 -0
  113. package/src/__tests__/theme.tsx +245 -0
  114. package/src/__tests__/transforms.tsx +509 -0
  115. package/src/__tests__/transition-animations.tsx +254 -0
  116. package/src/__tests__/typography.tsx +657 -0
  117. package/src/__tests__/unofficial-plugins.test.ios.tsx +171 -0
  118. package/src/doctor.ts +28 -0
  119. package/src/index.tsx +16 -0
  120. package/src/metro/common.ts +11 -0
  121. package/src/metro/index.ts +77 -0
  122. package/src/metro/picocolors.ts +76 -0
  123. package/src/metro/tailwind/index.ts +22 -0
  124. package/src/metro/tailwind/types.ts +9 -0
  125. package/src/metro/tailwind/v3/child.ts +61 -0
  126. package/src/metro/tailwind/v3/index.ts +103 -0
  127. package/src/metro/typescript.ts +69 -0
  128. package/src/stylesheet.ts +31 -0
  129. package/src/tailwind/color.ts +23 -0
  130. package/src/tailwind/common.ts +26 -0
  131. package/src/tailwind/dark-mode.ts +46 -0
  132. package/src/tailwind/index.ts +15 -0
  133. package/src/tailwind/native.ts +374 -0
  134. package/src/tailwind/prop-modifier.ts +7 -0
  135. package/src/tailwind/safe-area.ts +262 -0
  136. package/src/tailwind/shadows.ts +100 -0
  137. package/src/tailwind/switch.ts +59 -0
  138. package/src/tailwind/translate.ts +51 -0
  139. package/src/tailwind/verify.ts +16 -0
  140. package/src/tailwind/web.ts +38 -0
  141. package/src/tailwindcss-internals.d.ts +7 -0
  142. package/src/test.tsx +224 -0
  143. package/src/theme.ts +15 -0
  144. package/test/package.json +4 -0
  145. package/theme/package.json +3 -0
  146. package/types.d.ts +1 -0
@@ -0,0 +1,355 @@
1
+ import { renderCurrentTest } from "../test";
2
+
3
+ describe("Border - Border Radius", () => {
4
+ test("rounded", async () => {
5
+ expect(await renderCurrentTest()).toStrictEqual({
6
+ props: { style: { borderRadius: 3.5 } },
7
+ });
8
+ });
9
+ test("rounded-t", async () => {
10
+ expect(await renderCurrentTest()).toStrictEqual({
11
+ props: { style: { borderTopLeftRadius: 3.5, borderTopRightRadius: 3.5 } },
12
+ });
13
+ });
14
+ test("rounded-b", async () => {
15
+ expect(await renderCurrentTest()).toStrictEqual({
16
+ props: {
17
+ style: { borderBottomLeftRadius: 3.5, borderBottomRightRadius: 3.5 },
18
+ },
19
+ });
20
+ });
21
+ test("rounded-full", async () => {
22
+ expect(await renderCurrentTest()).toStrictEqual({
23
+ props: { style: { borderRadius: 9999 } },
24
+ });
25
+ });
26
+ });
27
+
28
+ describe("Border - Border Width", () => {
29
+ test("border-0", async () => {
30
+ expect(await renderCurrentTest()).toStrictEqual({
31
+ props: { style: { borderWidth: 0 } },
32
+ });
33
+ });
34
+ test("border-x-0", async () => {
35
+ expect(await renderCurrentTest()).toStrictEqual({
36
+ props: { style: { borderRightWidth: 0, borderLeftWidth: 0 } },
37
+ });
38
+ });
39
+ test("border-y-0", async () => {
40
+ expect(await renderCurrentTest()).toStrictEqual({
41
+ props: { style: { borderTopWidth: 0, borderBottomWidth: 0 } },
42
+ });
43
+ });
44
+ test("border-s-0", async () => {
45
+ expect(await renderCurrentTest()).toStrictEqual({
46
+ props: { style: { borderLeftWidth: 0 } },
47
+ });
48
+ });
49
+ test("border-e-0", async () => {
50
+ expect(await renderCurrentTest()).toStrictEqual({
51
+ props: { style: { borderRightWidth: 0 } },
52
+ });
53
+ });
54
+ test("border-t-0", async () => {
55
+ expect(await renderCurrentTest()).toStrictEqual({
56
+ props: { style: { borderTopWidth: 0 } },
57
+ });
58
+ });
59
+ test("border-r-0", async () => {
60
+ expect(await renderCurrentTest()).toStrictEqual({
61
+ props: { style: { borderRightWidth: 0 } },
62
+ });
63
+ });
64
+ test("border-b-0", async () => {
65
+ expect(await renderCurrentTest()).toStrictEqual({
66
+ props: { style: { borderBottomWidth: 0 } },
67
+ });
68
+ });
69
+ test("border-l-0", async () => {
70
+ expect(await renderCurrentTest()).toStrictEqual({
71
+ props: { style: { borderLeftWidth: 0 } },
72
+ });
73
+ });
74
+ test("border-2", async () => {
75
+ expect(await renderCurrentTest()).toStrictEqual({
76
+ props: { style: { borderWidth: 2 } },
77
+ });
78
+ });
79
+ test("border-x-2", async () => {
80
+ expect(await renderCurrentTest()).toStrictEqual({
81
+ props: { style: { borderRightWidth: 2, borderLeftWidth: 2 } },
82
+ });
83
+ });
84
+ test("border-y-2", async () => {
85
+ expect(await renderCurrentTest()).toStrictEqual({
86
+ props: { style: { borderTopWidth: 2, borderBottomWidth: 2 } },
87
+ });
88
+ });
89
+ test("border-s-2", async () => {
90
+ expect(await renderCurrentTest()).toStrictEqual({
91
+ props: { style: { borderLeftWidth: 2 } },
92
+ });
93
+ });
94
+ test("border-e-2", async () => {
95
+ expect(await renderCurrentTest()).toStrictEqual({
96
+ props: { style: { borderRightWidth: 2 } },
97
+ });
98
+ });
99
+ test("border-t-2", async () => {
100
+ expect(await renderCurrentTest()).toStrictEqual({
101
+ props: { style: { borderTopWidth: 2 } },
102
+ });
103
+ });
104
+ test("border-r-2", async () => {
105
+ expect(await renderCurrentTest()).toStrictEqual({
106
+ props: { style: { borderRightWidth: 2 } },
107
+ });
108
+ });
109
+ test("border-b-2", async () => {
110
+ expect(await renderCurrentTest()).toStrictEqual({
111
+ props: { style: { borderBottomWidth: 2 } },
112
+ });
113
+ });
114
+ test("border-l-2", async () => {
115
+ expect(await renderCurrentTest()).toStrictEqual({
116
+ props: { style: { borderLeftWidth: 2 } },
117
+ });
118
+ });
119
+ });
120
+
121
+ describe("Border - Border Color", () => {
122
+ test("border-white", async () => {
123
+ expect(await renderCurrentTest()).toStrictEqual({
124
+ props: { style: { borderColor: "#ffffff" } },
125
+ });
126
+ });
127
+ test("border-x-white", async () => {
128
+ expect(await renderCurrentTest()).toStrictEqual({
129
+ props: {
130
+ style: {
131
+ borderLeftColor: "#ffffff",
132
+ borderRightColor: "#ffffff",
133
+ },
134
+ },
135
+ });
136
+ });
137
+ test("border-y-white", async () => {
138
+ expect(await renderCurrentTest()).toStrictEqual({
139
+ props: {
140
+ style: {
141
+ borderTopColor: "#ffffff",
142
+ borderBottomColor: "#ffffff",
143
+ },
144
+ },
145
+ });
146
+ });
147
+ test("border-t-white", async () => {
148
+ expect(await renderCurrentTest()).toStrictEqual({
149
+ props: { style: { borderTopColor: "#ffffff" } },
150
+ });
151
+ });
152
+ test("border-b-white", async () => {
153
+ expect(await renderCurrentTest()).toStrictEqual({
154
+ props: { style: { borderBottomColor: "#ffffff" } },
155
+ });
156
+ });
157
+ test("border-l-white", async () => {
158
+ expect(await renderCurrentTest()).toStrictEqual({
159
+ props: { style: { borderLeftColor: "#ffffff" } },
160
+ });
161
+ });
162
+ test("border-r-white", async () => {
163
+ expect(await renderCurrentTest()).toStrictEqual({
164
+ props: { style: { borderRightColor: "#ffffff" } },
165
+ });
166
+ });
167
+ test("border-current", async () => {
168
+ expect(await renderCurrentTest()).toStrictEqual({
169
+ props: {},
170
+ invalid: {
171
+ style: {
172
+ "border-top-color": "currentcolor",
173
+ "border-bottom-color": "currentcolor",
174
+ "border-left-color": "currentcolor",
175
+ "border-right-color": "currentcolor",
176
+ },
177
+ },
178
+ });
179
+ });
180
+ test("border-inherit", async () => {
181
+ expect(await renderCurrentTest()).toStrictEqual({
182
+ props: {},
183
+ invalid: { style: { "border-color": "inherit" } },
184
+ });
185
+ });
186
+
187
+ test("border-x-inherit", async () => {
188
+ expect(await renderCurrentTest()).toStrictEqual({
189
+ props: {},
190
+ invalid: {
191
+ style: {
192
+ "border-left-color": "inherit",
193
+ "border-right-color": "inherit",
194
+ },
195
+ },
196
+ });
197
+ });
198
+ test("border-y-current", async () => {
199
+ expect(await renderCurrentTest()).toStrictEqual({
200
+ props: {},
201
+ invalid: {
202
+ style: {
203
+ "border-top-color": "currentcolor",
204
+ "border-bottom-color": "currentcolor",
205
+ },
206
+ },
207
+ });
208
+ });
209
+ test("border-y-inherit", async () => {
210
+ expect(await renderCurrentTest()).toStrictEqual({
211
+ props: {},
212
+ invalid: {
213
+ style: {
214
+ "border-top-color": "inherit",
215
+ "border-bottom-color": "inherit",
216
+ },
217
+ },
218
+ });
219
+ });
220
+ test("border-t-current", async () => {
221
+ expect(await renderCurrentTest()).toStrictEqual({
222
+ props: {},
223
+ invalid: { style: { "border-top-color": "currentcolor" } },
224
+ });
225
+ });
226
+
227
+ test("border-t-inherit", async () => {
228
+ expect(await renderCurrentTest()).toStrictEqual({
229
+ props: {},
230
+ invalid: { style: { "border-top-color": "inherit" } },
231
+ });
232
+ });
233
+
234
+ test("border-b-current", async () => {
235
+ expect(await renderCurrentTest()).toStrictEqual({
236
+ props: {},
237
+ invalid: { style: { "border-bottom-color": "currentcolor" } },
238
+ });
239
+ });
240
+
241
+ test("border-b-inherit", async () => {
242
+ expect(await renderCurrentTest()).toStrictEqual({
243
+ props: {},
244
+ invalid: { style: { "border-bottom-color": "inherit" } },
245
+ });
246
+ });
247
+
248
+ test("border-l-current", async () => {
249
+ expect(await renderCurrentTest()).toStrictEqual({
250
+ props: {},
251
+ invalid: { style: { "border-left-color": "currentcolor" } },
252
+ });
253
+ });
254
+
255
+ test("border-l-inherit", async () => {
256
+ expect(await renderCurrentTest()).toStrictEqual({
257
+ props: {},
258
+ invalid: { style: { "border-left-color": "inherit" } },
259
+ });
260
+ });
261
+
262
+ test("border-r-current", async () => {
263
+ expect(await renderCurrentTest()).toStrictEqual({
264
+ props: {},
265
+ invalid: { style: { "border-right-color": "currentcolor" } },
266
+ });
267
+ });
268
+
269
+ test("border-r-inherit", async () => {
270
+ expect(await renderCurrentTest()).toStrictEqual({
271
+ props: {},
272
+ invalid: { style: { "border-right-color": "inherit" } },
273
+ });
274
+ });
275
+ });
276
+
277
+ describe("Borders - Border Style", () => {
278
+ test("border-solid", async () => {
279
+ expect(await renderCurrentTest()).toStrictEqual({
280
+ props: { style: { borderStyle: "solid" } },
281
+ });
282
+ });
283
+ test("border-dashed", async () => {
284
+ expect(await renderCurrentTest()).toStrictEqual({
285
+ props: { style: { borderStyle: "dashed" } },
286
+ });
287
+ });
288
+ test("border-dotted", async () => {
289
+ expect(await renderCurrentTest()).toStrictEqual({
290
+ props: { style: { borderStyle: "dotted" } },
291
+ });
292
+ });
293
+ test("border-none", async () => {
294
+ expect(await renderCurrentTest()).toStrictEqual({
295
+ props: {},
296
+ invalid: { style: { "border-style": "none" } },
297
+ });
298
+ });
299
+ test("border-double", async () => {
300
+ expect(await renderCurrentTest()).toStrictEqual({
301
+ props: {},
302
+ invalid: { style: { "border-style": "double" } },
303
+ });
304
+ });
305
+ test("border-hidden", async () => {
306
+ expect(await renderCurrentTest()).toStrictEqual({
307
+ props: {},
308
+ invalid: { style: { "border-style": "hidden" } },
309
+ });
310
+ });
311
+ });
312
+
313
+ describe.skip("Borders - Divide Width", () => {
314
+ // TODO
315
+ });
316
+
317
+ describe.skip("Borders - Divide Color", () => {
318
+ // TODO
319
+ });
320
+
321
+ describe.skip("Borders - Divide Style", () => {
322
+ // TODO
323
+ });
324
+
325
+ describe.skip("Borders - Outline Width", () => {
326
+ // TODO
327
+ });
328
+
329
+ describe.skip("Borders - Outline Color", () => {
330
+ // TODO
331
+ });
332
+
333
+ describe.skip("Borders - Outline Style", () => {
334
+ // TODO
335
+ });
336
+
337
+ describe.skip("Borders - Outline Offset", () => {
338
+ // TODO
339
+ });
340
+
341
+ describe.skip("Borders - Ring Width", () => {
342
+ // TODO
343
+ });
344
+
345
+ describe.skip("Borders - Ring Color", () => {
346
+ // TODO
347
+ });
348
+
349
+ describe.skip("Borders - Ring Offset Width", () => {
350
+ // TODO
351
+ });
352
+
353
+ describe.skip("Borders - Ring Offset Color", () => {
354
+ // TODO
355
+ });
@@ -0,0 +1,59 @@
1
+ /** @jsxImportSource nativewind */
2
+ import { View } from "react-native";
3
+
4
+ import { fireEvent, screen } from "@testing-library/react-native";
5
+
6
+ import { render } from "../test";
7
+
8
+ const parentID = "parent";
9
+ const childID = "child";
10
+
11
+ test("Unnamed containers", async () => {
12
+ await render(
13
+ <View testID={parentID} className="@container">
14
+ <View testID={childID} className="@sm:text-white" />
15
+ </View>,
16
+ );
17
+
18
+ let parent = screen.getByTestId(parentID);
19
+ let child = screen.getByTestId(childID);
20
+
21
+ expect(child).toHaveStyle(undefined);
22
+
23
+ // Jest does not fire layout events, so we need to manually
24
+ fireEvent(parent, "layout", {
25
+ nativeEvent: {
26
+ layout: {
27
+ width: 500,
28
+ height: 200,
29
+ },
30
+ },
31
+ });
32
+
33
+ expect(child).toHaveStyle({ color: "#ffffff" });
34
+ });
35
+
36
+ test("Named containers", async () => {
37
+ await render(
38
+ <View testID={parentID} className="@container/main">
39
+ <View testID={childID} className="@sm/main:text-white" />
40
+ </View>,
41
+ );
42
+
43
+ let parent = screen.getByTestId(parentID);
44
+ let child = screen.getByTestId(childID);
45
+
46
+ expect(child).toHaveStyle(undefined);
47
+
48
+ // Jest does not fire layout events, so we need to manually
49
+ fireEvent(parent, "layout", {
50
+ nativeEvent: {
51
+ layout: {
52
+ width: 500,
53
+ height: 200,
54
+ },
55
+ },
56
+ });
57
+
58
+ expect(child).toHaveStyle({ color: "#ffffff" });
59
+ });
@@ -0,0 +1,45 @@
1
+ /** @jsxImportSource nativewind */
2
+ import { View } from "react-native";
3
+
4
+ import { act, screen } from "@testing-library/react-native";
5
+ import { colorScheme } from "react-native-css-interop";
6
+
7
+ import { render } from "../test";
8
+
9
+ const testID = "react-native-css-interop";
10
+
11
+ test("Using css variables", async () => {
12
+ // https://tailwindcss.com/docs/customizing-colors#using-css-variables
13
+ await render(<View testID={testID} className="text-primary" />, {
14
+ css: `
15
+ @tailwind base;
16
+ @tailwind components;
17
+ @tailwind utilities;
18
+
19
+ @layer base {
20
+ :root {
21
+ --color-primary: 255 115 179;
22
+ }
23
+ .dark:root {
24
+ --color-primary: 155 100 255;
25
+ }
26
+ }
27
+ `,
28
+ config: {
29
+ darkMode: "class",
30
+ theme: {
31
+ colors: {
32
+ primary: "rgb(var(--color-primary) / <alpha-value>)",
33
+ },
34
+ },
35
+ },
36
+ });
37
+
38
+ const component = screen.getByTestId(testID);
39
+
40
+ expect(component).toHaveStyle({ color: "rgba(255, 115, 179, 1)" });
41
+
42
+ act(() => colorScheme.set("dark"));
43
+
44
+ expect(component).toHaveStyle({ color: "rgba(155, 100, 255, 1)" });
45
+ });
@@ -0,0 +1,17 @@
1
+ import { renderCurrentTest } from "../test";
2
+
3
+ describe("Custom - Ripple Color", () => {
4
+ test("ripple-black", async () =>
5
+ expect(await renderCurrentTest()).toStrictEqual({
6
+ props: {
7
+ android_ripple: { color: "#000000" },
8
+ },
9
+ }));
10
+ });
11
+
12
+ describe("Custom - Ripple Borderless", () => {
13
+ test("ripple-borderless", async () =>
14
+ expect(await renderCurrentTest()).toStrictEqual({
15
+ props: { android_ripple: { borderless: true } },
16
+ }));
17
+ });