(integrations: Integration[] = [], name: string)
| 11 | const vercelEdgeInit = vi.spyOn(SentryVercelEdge, 'init'); |
| 12 | |
| 13 | function findIntegrationByName(integrations: Integration[] = [], name: string): Integration | undefined { |
| 14 | return integrations.find(integration => integration.name === name); |
| 15 | } |
| 16 | |
| 17 | describe('Edge init()', () => { |
| 18 | beforeEach(() => { |