()
| 6 | }; |
| 7 | |
| 8 | function getTestSentryErrors(): Event[] { |
| 9 | return window._sentryTestEvents.filter(event => event['type'] !== 'transaction'); |
| 10 | } |
| 11 | |
| 12 | function getTestSentryTransactions(): Event[] { |
| 13 | return window._sentryTestEvents.filter(event => event['type'] === 'transaction'); |
no outgoing calls
no test coverage detected