()
| 199 | |
| 200 | Deno.test("parseXmlStream() accepts AsyncIterable", async () => { |
| 201 | async function* generateChunks(): AsyncGenerator<string> { |
| 202 | yield "<root>"; |
| 203 | yield "<item/>"; |
| 204 | yield "</root>"; |
| 205 | } |
| 206 | |
| 207 | const elements: string[] = []; |
| 208 |
no test coverage detected