()
| 45 | } |
| 46 | |
| 47 | async function testBytesAsyncAbort() { |
| 48 | await assert.rejects( |
| 49 | () => bytes(from('data'), { signal: AbortSignal.abort() }), |
| 50 | { name: 'AbortError' }, |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | async function testBytesEmpty() { |
| 55 | const data = await bytes(from([])); |
no test coverage detected
searching dependent graphs…