diff --git a/lib/core/engine/command/chromeTrace.js b/lib/core/engine/command/chromeTrace.js index 724a72d3a..f3e0da440 100644 --- a/lib/core/engine/command/chromeTrace.js +++ b/lib/core/engine/command/chromeTrace.js @@ -8,7 +8,7 @@ import { import { parse } from '../../../chrome/traceCategoriesParser.js'; import { parseCPUTrace } from '../../../chrome/parseCpuTrace.js'; const log = intel.getLogger('browsertime.command.chrometrace'); -export class chromeTrace { +export class ChromeTrace { constructor(engineDelegate, index, options, result) { this.engineDelegate = engineDelegate; this.options = options; diff --git a/lib/core/engine/iteration.js b/lib/core/engine/iteration.js index bfa1c2b9b..72dc50222 100644 --- a/lib/core/engine/iteration.js +++ b/lib/core/engine/iteration.js @@ -24,7 +24,7 @@ import { Select } from './command/select.js'; import { Debug } from './command/debug.js'; import { AndroidCommand } from './command/android.js'; import { ChromeDevelopmentToolsProtocol } from './command/chromeDevToolsProtocol.js'; -import { chromeTrace } from './command/chromeTrace.js'; +import { ChromeTrace } from './command/chromeTrace.js'; import { addConnectivity, removeConnectivity @@ -165,7 +165,7 @@ export class Iteration { engineDelegate, options.browser ); - const trace = new chromeTrace(engineDelegate, index, options, result); + const trace = new ChromeTrace(engineDelegate, index, options, result); const android = new Android(options); const debug = new Debug(browser, options); const commands = {