(allowed: readonly string[])
| 281 | // the package ever passes it through we strip it here so the terminal never |
| 282 | // photobombs a screenshot. |
| 283 | const withoutTerminal = (allowed: readonly string[]): string[] => |
| 284 | terminalBundleId === null |
| 285 | ? [...allowed] |
| 286 | : allowed.filter(id => id !== terminalBundleId) |
| 287 | |
| 288 | logForDebugging( |
| 289 | terminalBundleId |
no outgoing calls
no test coverage detected