(cmds)
| 56 | }); |
| 57 | |
| 58 | function runAndWait(cmds) { |
| 59 | const promise = putIn.wait(); |
| 60 | for (const cmd of cmds) { |
| 61 | if (typeof cmd === 'string') { |
| 62 | putIn.run([cmd]); |
| 63 | } else { |
| 64 | testMe.write('', cmd); |
| 65 | } |
| 66 | } |
| 67 | return promise; |
| 68 | } |
| 69 | |
| 70 | async function ordinaryTests() { |
| 71 | // These tests were created based on |
no test coverage detected
searching dependent graphs…