We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f098b7a commit 1fd1c6aCopy full SHA for 1fd1c6a
test/brotli.spec.ts
@@ -191,7 +191,8 @@ describe("Brotli-wasm", () => {
191
expect(decOutput.toString('utf8')).to.equal(s);
192
});
193
194
- it("streaming compressing can handle needing more output when action is process", () => {
+ it("streaming compressing can handle needing more output when action is process", function () {
195
+ this.timeout(10000);
196
// The input should be more than about 1.6MB with enough randomness
197
// to make the compressor ask for more output space when the action is PROCESS
198
const input = genRandBytes(1600000);
0 commit comments