@@ -15,10 +15,8 @@ import {
1515} from '../helpers/issues-helpers.js' ;
1616
1717describe ( 'CORS issues' , ( ) => {
18- // Flakey on Windows only after a recent Chromium roll
19- it . skipOnPlatforms (
20- [ 'win32' ] , '[crbug.com/381055647] should display CORS violations with the correct affected resources' ,
21- async ( ) => {
18+ it (
19+ 'should display CORS violations with the correct affected resources' , async ( ) => {
2220 await goToResource ( 'issues/cors-issue.html' ) ;
2321 const { target} = getBrowserAndPages ( ) ;
2422 await target . evaluate ( async ( ) => {
@@ -70,11 +68,8 @@ describe('CORS issues', () => {
7068 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
7169 } ) ;
7270
73- // Flakey on Windows only after a recent Chromium roll
74- it . skipOnPlatforms (
75- [ 'win32' ] ,
76- '[crbug.com/381055647] should display credentialed+wildcard CORS issues with the correct affected resources' ,
77- async ( ) => {
71+ it (
72+ 'should display credentialed+wildcard CORS issues with the correct affected resources' , async ( ) => {
7873 await goToResource ( 'empty.html' ) ;
7974 const { target} = getBrowserAndPages ( ) ;
8075 await target . evaluate ( async ( ) => {
@@ -221,10 +216,8 @@ describe('CORS issues', () => {
221216 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
222217 } ) ;
223218
224- // Flakey on Windows only after a recent Chromium roll
225- it . skipOnPlatforms (
226- [ 'win32' ] , '[crbug.com/381055647] should display invalid CORS ACAC values with the correct affected resources' ,
227- async ( ) => {
219+ it (
220+ 'should display invalid CORS ACAC values with the correct affected resources' , async ( ) => {
228221 await goToResource ( 'empty.html' ) ;
229222 const { target} = getBrowserAndPages ( ) ;
230223 await target . evaluate ( async ( ) => {
@@ -317,11 +310,8 @@ describe('CORS issues', () => {
317310 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
318311 } ) ;
319312
320- // Flakey on Windows only after a recent Chromium roll
321- it . skipOnPlatforms (
322- [ 'win32' ] ,
323- '[crbug.com/381055647] should display CORS requests using disallowed headers with the correct affected resources' ,
324- async ( ) => {
313+ it (
314+ 'should display CORS requests using disallowed headers with the correct affected resources' , async ( ) => {
325315 await goToResource ( 'empty.html' ) ;
326316 const { target} = getBrowserAndPages ( ) ;
327317 await target . evaluate ( async ( ) => {
@@ -362,9 +352,8 @@ describe('CORS issues', () => {
362352 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
363353 } ) ;
364354
365- // Flakey on Windows only after a recent Chromium roll
366- it . skipOnPlatforms (
367- [ 'win32' ] , '[crbug.com/381055647] should display CORS requests redirecting to credentialed URLs' , async ( ) => {
355+ it (
356+ 'should display CORS requests redirecting to credentialed URLs' , async ( ) => {
368357 await goToResource ( 'empty.html' ) ;
369358 const { target} = getBrowserAndPages ( ) ;
370359 await target . evaluate ( async ( ) => {
@@ -398,9 +387,8 @@ describe('CORS issues', () => {
398387 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
399388 } ) ;
400389
401- // Flakey on Windows only after a recent Chromium roll
402- it . skipOnPlatforms (
403- [ 'win32' ] , '[crbug.com/381055647] should display CORS issues that are disallowed by the mode' , async ( ) => {
390+ it (
391+ 'should display CORS issues that are disallowed by the mode' , async ( ) => {
404392 await goToResource ( 'empty.html' ) ;
405393 const { target} = getBrowserAndPages ( ) ;
406394 await target . evaluate ( async ( ) => {
@@ -437,9 +425,8 @@ describe('CORS issues', () => {
437425 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
438426 } ) ;
439427
440- // Flakey on Windows only after a recent Chromium roll
441- it . skipOnPlatforms (
442- [ 'win32' ] , '[crbug.com/381055647] should display CORS issues that are unsupported by the scheme' , async ( ) => {
428+ it (
429+ 'should display CORS issues that are unsupported by the scheme' , async ( ) => {
443430 await goToResource ( 'empty.html' ) ;
444431 const { target} = getBrowserAndPages ( ) ;
445432 await target . evaluate ( async ( ) => {
@@ -478,10 +465,8 @@ describe('CORS issues', () => {
478465 await waitForTableFromResourceSectionContents ( section . content , expectedTableRows ) ;
479466 } ) ;
480467
481- // Flakey on Windows only after a recent Chromium roll
482- it . skipOnPlatforms (
483- [ 'win32' ] , '[crbug.com/381055647] should display CORS issues that are misconfiguring the redirect mode' ,
484- async ( ) => {
468+ it (
469+ 'should display CORS issues that are misconfiguring the redirect mode' , async ( ) => {
485470 await goToResource ( 'empty.html' ) ;
486471 const { target} = getBrowserAndPages ( ) ;
487472 await target . evaluate ( async ( ) => {
0 commit comments