Skip to content

Commit

Permalink
test(ci): skip a flaky (fd-counting) test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
grantila committed Sep 4, 2020
1 parent cc9cb2b commit d0c863c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/fetch-h2/http1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import {
import { ensureStatusSuccess } from "../lib/utils";


const itSkipCi = process.env.CI ? it.skip : it;

describe( `http1`, ( ) =>
{
const { cycleOpts, makeServer } =
Expand Down Expand Up @@ -35,7 +37,7 @@ describe( `http1`, ( ) =>
await server.shutdown( );
} );

it( "should re-use socket", async ( ) =>
itSkipCi( "should re-use socket", async ( ) =>
{
const { server, port } = await makeServer( );
const { disconnectAll, fetch } = context( { ...cycleOpts } );
Expand Down

0 comments on commit d0c863c

Please sign in to comment.