Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Jan 25, 2025
1 parent e504482 commit feb31c9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/core/engine/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,8 @@ export class Engine {
result.info.browser.args = options.chrome.args;
}
if (
(options.chrome && options.cpu) ||
options.chrome.timeline ||
options.chrome.trace
options.chrome &&
(options.cpu || options.chrome.timeline || options.chrome.trace)
) {
// get correct trace categories
let chromeTraceCategories = options.chrome.traceCategories
Expand Down

0 comments on commit feb31c9

Please sign in to comment.