From 80a9403fd4239dacbfd54f1964329a7b4bd10d21 Mon Sep 17 00:00:00 2001 From: "Oleksandr.Karpovich" Date: Wed, 2 Oct 2024 13:57:29 +0200 Subject: [PATCH] update html tests config --- html/test-utils/conf/karma.config.common.d/patch.js | 9 +++++++++ 1 file changed, 9 insertions(+) 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