| 167 | afterAll(() => { |
| 168 | // Format time value |
| 169 | const formatTime = time => { |
| 170 | if (time < 0.001) return `${(time * 1_000_000).toFixed(2)} ns`; |
| 171 | if (time < 1) return `${(time * 1000).toFixed(2)} µs`; |
| 172 | if (time < 1000) return `${time.toFixed(2)} ms`; |
| 173 | return `${(time / 1000).toFixed(2)} s`; |
| 174 | }; |
| 175 | |
| 176 | const lines = [ |
| 177 | "", |
no outgoing calls
no test coverage detected
searching dependent graphs…