()
| 179 | let y; |
| 180 | let z; |
| 181 | function Test() { |
| 182 | try { |
| 183 | throws(1); |
| 184 | } catch (e) { |
| 185 | x = e; |
| 186 | } |
| 187 | try { |
| 188 | throws(1); |
| 189 | } catch (e) { |
| 190 | y = e; |
| 191 | } |
| 192 | try { |
| 193 | throws(2); |
| 194 | } catch (e) { |
| 195 | z = e; |
| 196 | } |
| 197 | |
| 198 | return 'Blank'; |
| 199 | } |
| 200 | |
| 201 | ReactNoopFlightServer.render(<Test />); |
| 202 | expect(x).toBe(y); |
nothing calls this directly
no test coverage detected