From c1487f886b7716609e199136feaf90c2efed6a86 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 25 Jan 2023 17:49:49 +0100 Subject: [PATCH] test: skip 'should be able to visit ipv6' if docker (#20362) --- tests/library/browsertype-connect.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/library/browsertype-connect.spec.ts b/tests/library/browsertype-connect.spec.ts index c83cf9c278..adfcff158e 100644 --- a/tests/library/browsertype-connect.spec.ts +++ b/tests/library/browsertype-connect.spec.ts @@ -145,6 +145,7 @@ for (const kind of ['launchServer', 'run-server'] as const) { }); test('should be able to visit ipv6', async ({ connect, startRemoteServer, ipV6ServerUrl }) => { + test.fail(!!process.env.INSIDE_DOCKER, 'docker does not support IPv6 by default'); const remoteServer = await startRemoteServer(kind); const browser = await connect(remoteServer.wsEndpoint()); const page = await browser.newPage();