(text: string)
| 46 | ) |
| 47 | |
| 48 | const inputText: MockTerminal["inputText"] = (text: string) => { |
| 49 | const inputs = Array.map(text.split(""), (key) => toUserInput(key)) |
| 50 | return queue.offerAll(inputs).pipe(Effect.asVoid) |
| 51 | } |
| 52 | |
| 53 | const inputKey: MockTerminal["inputKey"] = ( |
| 54 | key: string, |
nothing calls this directly
no test coverage detected