Newer
Older
minerva / Tests / LibWeb / Text / input / Streams / ReadableStream-autoAllocateChunkSize-constructor.html
@minerva minerva on 13 Jul 260 bytes Initial commit
<script src="../include.js"></script>
<script>
    test(() => {
        let stream = new ReadableStream({
            type: "bytes",
            autoAllocateChunkSize: 64
        });
        println(`PASS. Made: ${stream.constructor.name}`);
    });
</script>