()
| 83 | await t.step("algorithm correctness - number of loop iterations", () => { |
| 84 | /** `Math.floor` calls act as a proxy for the number of loop iterations, as it's called once per iteration */ |
| 85 | const spyLoopIterations = () => spy(Math, "floor"); |
| 86 | |
| 87 | const arr = Array.from({ length: 1_000_000 }, (_, i) => i); |
| 88 |
no test coverage detected