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