test: unskip har http2 test on WebKit Windows (#31774)

This commit is contained in:
Max Schmitt 2024-07-19 13:44:56 +02:00 committed by GitHub
parent f104e920e0
commit f570c747d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -685,9 +685,7 @@ it('should return security details directly from response', async ({ contextFact
expect(securityDetails).toEqual({ issuer: 'playwright-test', protocol: 'TLS 1.3', subjectName: 'playwright-test', validFrom: 1691708270, validTo: 2007068270 });
});
it('should contain http2 for http2 requests', async ({ contextFactory, browserName, platform }, testInfo) => {
it.fixme(browserName === 'webkit' && platform === 'win32');
it('should contain http2 for http2 requests', async ({ contextFactory }, testInfo) => {
const server = http2.createSecureServer({
key: await fs.promises.readFile(path.join(__dirname, '..', 'config', 'testserver', 'key.pem')),
cert: await fs.promises.readFile(path.join(__dirname, '..', 'config', 'testserver', 'cert.pem')),