()
| 33 | } |
| 34 | |
| 35 | async function testBytesAsync() { |
| 36 | const data = await bytes(from('hello-async')); |
| 37 | assert.deepStrictEqual(data, new TextEncoder().encode('hello-async')); |
| 38 | } |
| 39 | |
| 40 | async function testBytesAsyncLimit() { |
| 41 | await assert.rejects( |
no test coverage detected
searching dependent graphs…