()
| 21 | // ============================================================================= |
| 22 | |
| 23 | async function testBytesSyncBasic() { |
| 24 | const data = bytesSync(fromSync('hello')); |
| 25 | assert.deepStrictEqual(data, new TextEncoder().encode('hello')); |
| 26 | } |
| 27 | |
| 28 | async function testBytesSyncLimit() { |
| 29 | assert.throws( |
no test coverage detected
searching dependent graphs…