(value)
| 890 | } |
| 891 | |
| 892 | const normalizeInspectorUrl = (value) => { |
| 893 | if (!value) { |
| 894 | return null |
| 895 | } |
| 896 | try { |
| 897 | return new URL(value).href |
| 898 | } catch (_) { |
| 899 | return value |
| 900 | } |
| 901 | } |
| 902 | |
| 903 | const urlsRoughlyMatch = (expected, candidate) => { |
| 904 | if (!expected) { |
no outgoing calls
no test coverage detected