File tree 4 files changed +30
-15
lines changed
4 files changed +30
-15
lines changed Original file line number Diff line number Diff line change 2
2
3
3
---
4
4
5
+ #### ` 5.2.x `
6
+
7
+ - chore(karma.conf): add custom chrome launcher with ` --disable-search-engine-choice-screen ` flag
8
+
9
+ ---
10
+
5
11
#### ` 5.2.12 `
6
12
7
13
- chore(dependencies): update
Original file line number Diff line number Diff line change @@ -27,17 +27,20 @@ module.exports = function (config) {
27
27
coverageReporter : {
28
28
dir : require ( 'path' ) . join ( __dirname , '../../coverage/coreui-angular-chartjs' ) ,
29
29
subdir : '.' ,
30
- reporters : [
31
- { type : 'html' } ,
32
- { type : 'text-summary' }
33
- ]
30
+ reporters : [ { type : 'html' } , { type : 'text-summary' } ]
34
31
} ,
35
32
reporters : [ 'progress' , 'kjhtml' ] ,
36
33
port : 9876 ,
37
34
colors : true ,
38
35
logLevel : config . LOG_INFO ,
39
36
autoWatch : true ,
40
- browsers : [ 'Chrome' ] ,
37
+ browsers : [ 'Chrome_Custom' ] ,
38
+ customLaunchers : {
39
+ Chrome_Custom : {
40
+ base : 'Chrome' ,
41
+ flags : [ '--disable-search-engine-choice-screen' ]
42
+ }
43
+ } ,
41
44
singleRun : false ,
42
45
restartOnFileChange : true
43
46
} ) ;
Original file line number Diff line number Diff line change @@ -27,17 +27,20 @@ module.exports = function (config) {
27
27
coverageReporter : {
28
28
dir : require ( 'path' ) . join ( __dirname , '../../coverage/coreui-angular' ) ,
29
29
subdir : '.' ,
30
- reporters : [
31
- { type : 'html' } ,
32
- { type : 'text-summary' }
33
- ]
30
+ reporters : [ { type : 'html' } , { type : 'text-summary' } ]
34
31
} ,
35
32
reporters : [ 'progress' , 'kjhtml' ] ,
36
33
port : 9876 ,
37
34
colors : true ,
38
35
logLevel : config . LOG_INFO ,
39
36
autoWatch : true ,
40
- browsers : [ 'Chrome' ] ,
37
+ browsers : [ 'Chrome_Custom' ] ,
38
+ customLaunchers : {
39
+ Chrome_Custom : {
40
+ base : 'Chrome' ,
41
+ flags : [ '--disable-search-engine-choice-screen' ]
42
+ }
43
+ } ,
41
44
singleRun : false ,
42
45
restartOnFileChange : true
43
46
} ) ;
Original file line number Diff line number Diff line change @@ -27,17 +27,20 @@ module.exports = function (config) {
27
27
coverageReporter : {
28
28
dir : require ( 'path' ) . join ( __dirname , '../../coverage/coreui-icons-angular' ) ,
29
29
subdir : '.' ,
30
- reporters : [
31
- { type : 'html' } ,
32
- { type : 'text-summary' }
33
- ]
30
+ reporters : [ { type : 'html' } , { type : 'text-summary' } ]
34
31
} ,
35
32
reporters : [ 'progress' , 'kjhtml' ] ,
36
33
port : 9876 ,
37
34
colors : true ,
38
35
logLevel : config . LOG_INFO ,
39
36
autoWatch : true ,
40
- browsers : [ 'Chrome' ] ,
37
+ browsers : [ 'Chrome_Custom' ] ,
38
+ customLaunchers : {
39
+ Chrome_Custom : {
40
+ base : 'Chrome' ,
41
+ flags : [ '--disable-search-engine-choice-screen' ]
42
+ }
43
+ } ,
41
44
singleRun : false ,
42
45
restartOnFileChange : true
43
46
} ) ;
You can’t perform that action at this time.
0 commit comments