Skip to content

Commit 1fd1c6a

Browse files
committed
Change timeout of a test to 10s
1 parent f098b7a commit 1fd1c6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/brotli.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ describe("Brotli-wasm", () => {
191191
expect(decOutput.toString('utf8')).to.equal(s);
192192
});
193193

194-
it("streaming compressing can handle needing more output when action is process", () => {
194+
it("streaming compressing can handle needing more output when action is process", function () {
195+
this.timeout(10000);
195196
// The input should be more than about 1.6MB with enough randomness
196197
// to make the compressor ask for more output space when the action is PROCESS
197198
const input = genRandBytes(1600000);

0 commit comments

Comments
 (0)