()
| 102 | '18.2.0', |
| 103 | ); |
| 104 | function mountTestApp() { |
| 105 | mountStrictApp(ToDoList); |
| 106 | mountApp(InspectableElements); |
| 107 | mountApp(Hydration); |
| 108 | mountApp(ElementTypes); |
| 109 | mountApp(EditableProps); |
| 110 | mountApp(ReactNativeWeb); |
| 111 | mountApp(Toggle); |
| 112 | mountApp(ErrorBoundaries); |
| 113 | mountApp(SuspenseTree); |
| 114 | mountApp(DeeplyNestedComponents); |
| 115 | mountApp(Iframe); |
| 116 | mountApp(TraceUpdatesTest); |
| 117 | |
| 118 | if (shouldRenderLegacy) { |
| 119 | mountLegacyApp(PartiallyStrictApp); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | function unmountTestApp() { |
| 124 | unmountFunctions.forEach(fn => fn()); |
no test coverage detected