|
@@ -14,7 +14,7 @@ const port = 1234;
|
|
const pixelThreshold = 0.2;
|
|
const pixelThreshold = 0.2;
|
|
const maxFailedPixels = 0.05;
|
|
const maxFailedPixels = 0.05;
|
|
const networkTimeout = 600;
|
|
const networkTimeout = 600;
|
|
-const networkTax = 2000; // additional timout tax for resources size
|
|
|
|
|
|
+const networkTax = 2000; // additional timeout for resources size
|
|
const pageSizeMinTax = 1.0; // in mb, when networkTax = 0
|
|
const pageSizeMinTax = 1.0; // in mb, when networkTax = 0
|
|
const pageSizeMaxTax = 5.0; // in mb, when networkTax = networkTax
|
|
const pageSizeMaxTax = 5.0; // in mb, when networkTax = networkTax
|
|
const renderTimeout = 1200;
|
|
const renderTimeout = 1200;
|
|
@@ -23,14 +23,14 @@ const maxAttemptId = 3; // progresseve attempts
|
|
const exceptionList = [
|
|
const exceptionList = [
|
|
|
|
|
|
'index',
|
|
'index',
|
|
- 'webgl_loader_texture_pvrtc', // not supported in CI, usless
|
|
|
|
|
|
+ 'webgl_loader_texture_pvrtc', // not supported in CI, useless
|
|
'webgl_materials_envmaps_parallax',
|
|
'webgl_materials_envmaps_parallax',
|
|
'webgl_test_memory2', // gives fatal error in puppeteer
|
|
'webgl_test_memory2', // gives fatal error in puppeteer
|
|
'webgl_worker_offscreencanvas', // in a worker, not robust
|
|
'webgl_worker_offscreencanvas', // in a worker, not robust
|
|
|
|
|
|
].concat( ( process.platform === "win32" ) ? [
|
|
].concat( ( process.platform === "win32" ) ? [
|
|
|
|
|
|
- 'webgl_effects_ascii' // windows fonts
|
|
|
|
|
|
+ 'webgl_effects_ascii' // windows fonts not supported
|
|
|
|
|
|
] : [] );
|
|
] : [] );
|
|
|
|
|