(integrations: Integration[] = [], name: string)
| 12 | const nodeInit = vi.spyOn(SentryNode, 'init'); |
| 13 | |
| 14 | function findIntegrationByName(integrations: Integration[] = [], name: string): Integration | undefined { |
| 15 | return integrations.find(integration => integration.name === name); |
| 16 | } |
| 17 | |
| 18 | describe('Server init()', () => { |
| 19 | afterEach(() => { |