Skip to content

Commit

Permalink
Merge pull request #395 from cd9/options-repair-fix
Browse files Browse the repository at this point in the history
Use correct `options` when repairing using `CONCURRENCY_BROWSER`
  • Loading branch information
thomasdondorf authored Jan 23, 2022
2 parents c88c7df + a760bac commit bef1142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concurrency/built-in/Browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class Browser extends ConcurrencyImplementation {
} catch (e) {}

// just relaunch as there is only one page per browser
chrome = await this.puppeteer.launch(this.options);
chrome = await this.puppeteer.launch(options);
},
};
}
Expand Down

0 comments on commit bef1142

Please sign in to comment.