From dd12cf82bc08db8f69a26e3737ffc9469c30173b Mon Sep 17 00:00:00 2001 From: Adam Raine <6752989+adamraine@users.noreply.github.com> Date: Wed, 12 Jul 2023 13:44:04 -0700 Subject: [PATCH] tests(devtools): remove unused test options (#15260) --- cli/test/smokehouse/lighthouse-runners/devtools.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/test/smokehouse/lighthouse-runners/devtools.js b/cli/test/smokehouse/lighthouse-runners/devtools.js index d3eecf854032..ff6e1ba25148 100644 --- a/cli/test/smokehouse/lighthouse-runners/devtools.js +++ b/cli/test/smokehouse/lighthouse-runners/devtools.js @@ -40,10 +40,9 @@ async function setup() { * CHROME_PATH determines which Chrome is used–otherwise the default is puppeteer's chrome binary. * @param {string} url * @param {LH.Config=} config - * @param {{isDebug?: boolean}=} testRunnerOptions * @return {Promise<{lhr: LH.Result, artifacts: LH.Artifacts, log: string}>} */ -async function runLighthouse(url, config, testRunnerOptions = {}) { +async function runLighthouse(url, config) { const chromeFlags = [ `--custom-devtools-frontend=file://${devtoolsDir}/out/LighthouseIntegration/gen/front_end`, ];