fix: failing array-buffer.test-d.ts test (#5580)

This commit is contained in:
Max Karou
2023-09-16 21:07:01 +02:00
committed by GitHub
parent 7f45866d76
commit 08426962fa

View File

@@ -1,5 +1,4 @@
const buffer = new ArrayBuffer({
byteLength: 1024,
const buffer = new ArrayBuffer(1024, {
maxByteLength: 2048,
});