(data)
| 130 | }; |
| 131 | |
| 132 | function testBinary(data) { |
| 133 | const byteArray = new Uint8Array(data); |
| 134 | for (let i = 0; i < byteArray.byteLength; i++) { |
| 135 | expect(byteArray[i]).to.be(i); |
| 136 | } |
| 137 | } |
| 138 | }); |
| 139 | } |
| 140 |
no outgoing calls
no test coverage detected
searching dependent graphs…