Skip to content

Commit

Permalink
Disabled selectio of search engine in test Browser
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkapok committed Aug 15, 2024
1 parent 0fa4704 commit b7c128d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
11 changes: 9 additions & 2 deletions projects/planner/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,15 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ["MyChromeWithoutSearchSelect"],
customLaunchers: {
MyChromeWithoutSearchSelect: {
base: "Chrome",
flags: ["-disable-search-engine-choice-screen"],
},
},
singleRun: false,
restartOnFileChange: true
restartOnFileChange: true,

});
};
8 changes: 7 additions & 1 deletion projects/scuba-physics/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ["MyChromeWithoutSearchSelect"],
customLaunchers: {
MyChromeWithoutSearchSelect: {
base: "Chrome",
flags: ["-disable-search-engine-choice-screen"],
},
},
singleRun: false,
restartOnFileChange: true
});
Expand Down

0 comments on commit b7c128d

Please sign in to comment.