| 1 | import { afterEach, beforeEach, describe, expect, mock, test } from 'bun:test' |
| 2 | |
| 3 | const mockParseDeepLink = mock((uri: string) => { |
| 4 | if (uri === null || uri === undefined || uri === 'bad-uri') { |
nothing calls this directly
no test coverage detected