(flow: Flow)
| 184 | }; |
| 185 | |
| 186 | export const canReplay = (flow: Flow): boolean => { |
| 187 | return flow.type === "http" && !flow.websocket; |
| 188 | }; |
| 189 | export const canRevert = (flow: Flow): boolean => flow.modified; |
| 190 | export const canResumeOrKill = (flow: Flow): boolean => flow.intercepted; |
| 191 |
no outgoing calls
no test coverage detected
searching dependent graphs…