diff --git a/lighthouse-core/gather/gatherers/fonts.js b/lighthouse-core/gather/gatherers/fonts.js index 7dc0e1f640c1..f580e476cfe5 100644 --- a/lighthouse-core/gather/gatherers/fonts.js +++ b/lighthouse-core/gather/gatherers/fonts.js @@ -140,8 +140,8 @@ function getFontFaceFromStylesheets() { oldNode.parentNode && oldNode.parentNode.insertBefore(newNode, oldNode); oldNode.remove(); - // Give each stylesheet 1s to load before giving up - setTimeout(() => resolve([{err: {message: 'Could not load stylesheet (timeout)'}}]), 1000); + // Give each stylesheet 5s to load before giving up + setTimeout(() => resolve([{err: {message: 'Could not load stylesheet (timeout)'}}]), 5000); }); }