(t, stream, expectedOutput = foobarString)
| 33 | }; |
| 34 | |
| 35 | export const assertStreamOutput = async (t, stream, expectedOutput = foobarString) => { |
| 36 | t.is(await text(stream), expectedOutput); |
| 37 | }; |
| 38 | |
| 39 | export const assertStreamDataEvents = async (t, stream, expectedOutput = foobarString) => { |
| 40 | t.is(await getStream(stream), expectedOutput); |
no outgoing calls
no test coverage detected
searching dependent graphs…