diff --git a/tests/library/browsertype-connect.spec.ts b/tests/library/browsertype-connect.spec.ts index adfcff158e..450e52bd48 100644 --- a/tests/library/browsertype-connect.spec.ts +++ b/tests/library/browsertype-connect.spec.ts @@ -57,6 +57,7 @@ const test = playwrightTest.extend({ }, ipV6ServerUrl: async ({}, use) => { + test.skip(!!process.env.INSIDE_DOCKER, 'docker does not support IPv6 by default'); const server = http.createServer((req: http.IncomingMessage, res: http.ServerResponse) => { res.end('from-ipv6-server'); });