Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix clobbering of arguments in custom configurations (#50)
Properly merge arrays when custom configuration is used, so i.e. ChromeHeadless now can be extended with additional args: ```js customLaunchers: { 'ChromeHeadlessNoSandbox': { base: 'ChromeHeadless', config: { 'goog:chromeOptions': { args: [ '--no-sandbox', // before we had to pass other args because merge wasn't working properly // '--headless', // '--disable-gpu', // '--disable-dev-shm-usage', ], }, }, }, }, ```
- Loading branch information