(command: string | undefined)
| 134 | } |
| 135 | |
| 136 | function isExplicitTimeoutCommand(command: string | undefined): boolean { |
| 137 | return ( |
| 138 | command === PUBLIC_COMMANDS.prepare || |
| 139 | command === PUBLIC_COMMANDS.replay || |
| 140 | command === PUBLIC_COMMANDS.snapshot |
| 141 | ); |
| 142 | } |
no outgoing calls
no test coverage detected