()
| 12 | Deno.test({ |
| 13 | name: "sample() handles no mutation", |
| 14 | fn() { |
| 15 | const array = ["a", "abc", "ba"]; |
| 16 | sample(array); |
| 17 | |
| 18 | assertEquals(array, ["a", "abc", "ba"]); |
| 19 | }, |
| 20 | }); |
| 21 | |
| 22 | Deno.test({ |
nothing calls this directly
no test coverage detected