Changeset 51130
- Timestamp:
- 06/09/2021 01:35:26 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/e2e/config/bootstrap.js
r46586 r51130 33 33 // The Jest timeout is increased because these tests are a bit slow 34 34 jest.setTimeout( PUPPETEER_TIMEOUT || 100000 ); 35 36 35 37 36 /** … … 70 69 // which log regardless of whether a deprecated feature is in use. 71 70 if ( text.includes( 'This is a global warning' ) ) { 71 return; 72 } 73 74 // An exception is made for jQuery migrate console warnings output by 75 // the unminified script loaded in development environments. 76 if ( text.includes( 'JQMIGRATE' ) ) { 72 77 return; 73 78 }
Note: See TracChangeset
for help on using the changeset viewer.