Skip to content

Commit

Permalink
fix(test): increased timeout of a slow test
Browse files Browse the repository at this point in the history
  • Loading branch information
grantila committed Sep 4, 2020
1 parent 121c378 commit cc9cb2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fetch-h2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ describe( `generic (${protoVersion})`, ( ) =>
it( "should be able to POST large (16MiB) stream with known length",
async ( ) =>
{
jest.setTimeout( 2000 );
jest.setTimeout( 4000 );

const { server, port } = await makeServer( );

Expand Down Expand Up @@ -455,7 +455,7 @@ describe( `generic (${protoVersion})`, ( ) =>
it( "should be able to POST large (16MiB) stream with unknown length",
async ( ) =>
{
jest.setTimeout( 2000 );
jest.setTimeout( 4000 );

const { server, port } = await makeServer( );

Expand Down

0 comments on commit cc9cb2b

Please sign in to comment.