(headers: Record<string, string>)
| 5 | import { isZoomEventMatch } from '@/triggers/zoom/utils' |
| 6 | |
| 7 | function reqWithHeaders(headers: Record<string, string>): NextRequest { |
| 8 | return new NextRequest('http://localhost/test', { headers }) |
| 9 | } |
| 10 | |
| 11 | describe('Zoom webhook provider', () => { |
| 12 | it('isZoomEventMatch rejects empty event for specialized triggers', () => { |