(array)
| 17 | }); |
| 18 | |
| 19 | function uint8Array(array) { |
| 20 | const uint8Array = new Uint8Array(array.length); |
| 21 | for (let i = 0; i < array.length; i++) { |
| 22 | uint8Array[i] = array[i]; |
| 23 | } |
| 24 | return uint8Array; |
| 25 | } |
| 26 | |
| 27 | function testSuite(description, win, expectedError) { |
| 28 | describe(description, () => { |
no outgoing calls
no test coverage detected