mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
test: skip 'should work with ip6 and port as the host' inside Docker (#21981)
This commit is contained in:
parent
591e4ea976
commit
a64cdf87ee
@ -62,6 +62,7 @@ it('https post should work with ignoreHTTPSErrors option', async ({ context, htt
|
||||
|
||||
|
||||
it('should work with ip6 and port as the host', async ({ request, server }) => {
|
||||
it.skip(!!process.env.INSIDE_DOCKER, 'docker does not support IPv6 by default');
|
||||
const response = await request.get(`http://[::1]:${server.PORT}/simple.json`);
|
||||
expect(response.url()).toBe(`http://[::1]:${server.PORT}/simple.json`);
|
||||
expect(response).toBeOK();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user