(options: Partial<BrowserOptions> = {})
| 15 | const PUBLIC_DSN = 'https://username@domain/123'; |
| 16 | |
| 17 | function getDefaultBrowserOptions(options: Partial<BrowserOptions> = {}): BrowserOptions { |
| 18 | return { |
| 19 | integrations: [], |
| 20 | transport: () => createTransport({ recordDroppedEvent: () => undefined }, _ => resolvedSyncPromise({})), |
| 21 | stackParser: () => [], |
| 22 | ...options, |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | export class MockIntegration implements Integration { |
| 27 | public name: string; |
no test coverage detected