tests: skip Docker ipv6 tests (#9646)

Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Andrey Lushnikov 2021-10-20 02:03:46 -07:00 committed by GitHub
parent 05c60e6d9e
commit fe49b91680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,6 +88,7 @@ it('should use proxy', async ({ contextFactory, server, proxyServer }) => {
it('should use ipv6 proxy', async ({ contextFactory, server, proxyServer, browserName }) => { it('should use ipv6 proxy', async ({ contextFactory, server, proxyServer, browserName }) => {
it.fail(browserName === 'firefox', 'page.goto: NS_ERROR_UNKNOWN_HOST'); it.fail(browserName === 'firefox', 'page.goto: NS_ERROR_UNKNOWN_HOST');
it.fail(!!process.env.INSIDE_DOCKER, 'docker does not support IPv6 by default');
proxyServer.forwardTo(server.PORT); proxyServer.forwardTo(server.PORT);
const context = await contextFactory({ const context = await contextFactory({
proxy: { server: `[0:0:0:0:0:0:0:1]:${proxyServer.PORT}` } proxy: { server: `[0:0:0:0:0:0:0:1]:${proxyServer.PORT}` }