(length, max)
| 31 | ); |
| 32 | |
| 33 | function randomArray(length, max) { |
| 34 | return Array.apply(null, Array(length)).map(function () { |
| 35 | return Math.random() * max; |
| 36 | }); |
| 37 | } |
| 38 | |
| 39 | test("add one", () => { |
| 40 | tvm.beginScope(); |
no test coverage detected
searching dependent graphs…