(transport: Transport)
| 214 | }); |
| 215 | |
| 216 | function createDisabledClientWith(transport: Transport) { |
| 217 | return new ReactNativeClient({ |
| 218 | ...DEFAULT_OPTIONS, |
| 219 | dsn: EXAMPLE_DSN, |
| 220 | enabled: false, |
| 221 | transport: () => transport, |
| 222 | }); |
| 223 | } |
| 224 | }); |
| 225 | |
| 226 | describe('onReady', () => { |