()
| 246 | |
| 247 | Deno.test("parseXmlStream() accepts AsyncIterable", async () => { |
| 248 | async function* generateChunks(): AsyncGenerator<string> { |
| 249 | yield "<root>"; |
| 250 | yield "<item/>"; |
| 251 | yield "</root>"; |
| 252 | } |
| 253 | |
| 254 | const elements: string[] = []; |
| 255 |
no test coverage detected