We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4837f2e commit 15f3f43Copy full SHA for 15f3f43
karma.conf.js
@@ -1,7 +1,7 @@
1
// Karma configuration file, see link for more information
2
// https://karma-runner.github.io/1.0/config/configuration-file.html
3
4
-module.exports = function (config) {
+module.exports = function(config) {
5
config.set({
6
basePath: '',
7
frameworks: ['jasmine', '@angular-devkit/build-angular'],
@@ -37,7 +37,13 @@ module.exports = function (config) {
37
colors: true,
38
logLevel: config.LOG_INFO,
39
autoWatch: true,
40
- browsers: ['Chrome'],
+ browsers: ['Chrome_Custom'],
41
+ customLaunchers: {
42
+ Chrome_Custom: {
43
+ base: 'Chrome',
44
+ flags: ['--disable-search-engine-choice-screen']
45
+ }
46
+ },
47
singleRun: false,
48
restartOnFileChange: true
49
});
0 commit comments