(quantity: number)
| 118 | describe('ticks', function () { |
| 119 | |
| 120 | function randomNumber(quantity: number): number { |
| 121 | return randomSign() * (1 + Math.random()) * Math.pow(10, randomSign() * quantity); |
| 122 | } |
| 123 | function randomSign() { |
| 124 | return (Math.random() - 0.5) > 0 ? 1 : -1; |
| 125 | } |
no test coverage detected
searching dependent graphs…