test: skip 'should be able to visit ipv6' if docker (#20362)

This commit is contained in:
Max Schmitt 2023-01-25 17:49:49 +01:00 committed by GitHub
parent 9f97190f99
commit c1487f886b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();