diff --git a/testing/talos/talos/tests/devtools/addon/content/pages/custom/console/iframe.html b/testing/talos/talos/tests/devtools/addon/content/pages/custom/console/iframe.html index 9809c04e3085..895cdbad010c 100644 --- a/testing/talos/talos/tests/devtools/addon/content/pages/custom/console/iframe.html +++ b/testing/talos/talos/tests/devtools/addon/content/pages/custom/console/iframe.html @@ -8,16 +8,16 @@ diff --git a/testing/talos/talos/tests/devtools/addon/content/tests/webconsole/custom.js b/testing/talos/talos/tests/devtools/addon/content/tests/webconsole/custom.js index 11f8ea42b2d4..4a01bb63913d 100644 --- a/testing/talos/talos/tests/devtools/addon/content/tests/webconsole/custom.js +++ b/testing/talos/talos/tests/devtools/addon/content/tests/webconsole/custom.js @@ -17,15 +17,15 @@ const TEST_URL = PAGES_BASE_URL + "custom/console/index.html"; module.exports = async function() { // These numbers controls the number of console api calls we do in the test - let sync = 250, + const sync = 250, stream = 250, - async = 250; - let params = `?sync=${sync}&stream=${stream}&async=${async}`; - let url = TEST_URL + params; + batch = 250; + const params = `?sync=${sync}&stream=${stream}&batch=${batch}`; + const url = TEST_URL + params; await testSetup(url, { disableCache: true }); - let toolbox = await openToolboxAndLog("custom.webconsole", "webconsole"); - await reloadConsoleAndLog("custom", toolbox, sync + stream + async); + const toolbox = await openToolboxAndLog("custom.webconsole", "webconsole"); + await reloadConsoleAndLog("custom", toolbox, sync + stream + batch); await closeToolboxAndLog("custom.webconsole", toolbox); await testTeardown();