Explorar el Código

Make puppeteer error handling more robust.

Mr.doob hace 1 año
padre
commit
eb052843e9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/e2e/puppeteer.js

+ 1 - 1
test/e2e/puppeteer.js

@@ -485,7 +485,7 @@ async function makeAttempt( pages, failedScreenshots, cleanPage, isMakeScreensho
 
 		} catch ( e ) {
 
-			if ( ! e.includes( 'Render timeout exceeded' ) ) {
+			if ( e.includes && e.includes( 'Render timeout exceeded' ) === false ) {
 
 				throw new Error( `Error happened while rendering file ${ file }: ${ e }` );