I'm trying to configure Karma to use ChromeHeadless by default and headless Chromium as a fallback. Right now I have to configure headless Chromium myself:
customLaunchers: {
"ChromiumHeadless": {
base: "Chromium",
flags: [
"--headless",
" --remote-debugging-port=9222",
// https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
"--disable-gpu",
],
},
}
Could the ChromiumHeadless browser be included with this launcher by default, like is already the case with ChromeHeadless?
I'm trying to configure Karma to use
ChromeHeadlessby default and headless Chromium as a fallback. Right now I have to configure headless Chromium myself:Could the
ChromiumHeadlessbrowser be included with this launcher by default, like is already the case withChromeHeadless?