(state: ProbeState)
| 31 | } |
| 32 | |
| 33 | export function shouldInjectRuntime(state: ProbeState): boolean { |
| 34 | if (state.hasRuntime || state.runtimeInjected) return false; |
| 35 | if (state.hasNestedCompositions) return true; |
| 36 | if (state.hasTimelines && state.attempts >= 5) return true; |
| 37 | return false; |
| 38 | } |
no outgoing calls
no test coverage detected