()
| 36 | Deno.test({ |
| 37 | name: "parseList() rejects trailing garbage", |
| 38 | fn() { |
| 39 | assertThrows( |
| 40 | () => parseList("1, 2 garbage"), |
| 41 | SyntaxError, |
| 42 | "expected ','", |
| 43 | ); |
| 44 | }, |
| 45 | }); |
| 46 | |
| 47 | Deno.test({ |
nothing calls this directly
no test coverage detected