()
| 38 | Deno.test({ |
| 39 | name: "JsonStringifyStream", |
| 40 | async fn() { |
| 41 | await assertValidStringify( |
| 42 | JsonStringifyStream, |
| 43 | [{ foo: "bar" }, { foo: "bar" }], |
| 44 | ['{"foo":"bar"}\n', '{"foo":"bar"}\n'], |
| 45 | ); |
| 46 | }, |
| 47 | }); |
| 48 | |
| 49 | Deno.test({ |
nothing calls this directly
no test coverage detected