diff --git a/html/test-utils/conf/karma.config.common.d/patch.js b/html/test-utils/conf/karma.config.common.d/patch.js index 9a91dc9e6b..fcd65c12a2 100644 --- a/html/test-utils/conf/karma.config.common.d/patch.js +++ b/html/test-utils/conf/karma.config.common.d/patch.js @@ -10,3 +10,12 @@ config.browserDisconnectTimeout = 10000; config.browserDisconnectTolerance = 3; config.browserConsoleLogOptions = {level: "debug", format: "%b %T: %m", terminal: true}; config.logLevel = config.LOG_DEBUG; + +config.customLaunchers = { + ChromeForComposeTests: { + base: "Chrome", + flags: ["--no-sandbox", "--disable-search-engine-choice-screen"] + } +} + +config.browsers = ["ChromeForComposeTests"] \ No newline at end of file