File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
packages/schematics/angular/e2e/files Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ exports.config = {
13
13
'./src/**/*.e2e-spec.ts'
14
14
],
15
15
capabilities: {
16
- ' browserName' : 'chrome'
16
+ browserName: 'chrome'
17
17
},
18
18
directConnect: true,
19
19
baseUrl: 'http://localhost:4200/',
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exports.config = {
10
10
'./e2e/**/*.e2e-spec.ts'
11
11
] ,
12
12
capabilities : {
13
- ' browserName' : 'chrome'
13
+ browserName : 'chrome'
14
14
} ,
15
15
directConnect : true ,
16
16
baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exports.config = {
10
10
'./e2e/**/*.e2e-spec.ts'
11
11
] ,
12
12
capabilities : {
13
- ' browserName' : 'chrome'
13
+ browserName : 'chrome'
14
14
} ,
15
15
directConnect : true ,
16
16
baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ exports.config = {
9
9
'./src/**/*.e2e-spec.ts'
10
10
] ,
11
11
capabilities : {
12
- ' browserName' : 'chrome'
12
+ browserName : 'chrome'
13
13
} ,
14
14
directConnect : true ,
15
15
baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -262,8 +262,8 @@ export function useCIChrome(projectDir: string) {
262
262
. then ( ( ) => {
263
263
if ( fs . existsSync ( protractorConf ) ) {
264
264
return replaceInFile ( protractorConf ,
265
- `' browserName' : 'chrome'` ,
266
- `' browserName' : 'chrome',
265
+ `browserName: 'chrome'` ,
266
+ `browserName: 'chrome',
267
267
chromeOptions: {
268
268
args: ['--headless'],
269
269
binary: require('puppeteer').executablePath()
@@ -279,11 +279,11 @@ export function useCIChrome(projectDir: string) {
279
279
. then ( ( ) => replaceInFile ( karmaConf ,
280
280
`browsers: ['Chrome']` ,
281
281
`browsers: ['Chrome'],
282
- customLaunchers: {
283
- ChromeHeadlessCI: {
284
- base: 'ChromeHeadless',
282
+ customLaunchers: {
283
+ ChromeHeadlessCI: {
284
+ base: 'ChromeHeadless',
285
+ }
285
286
}
286
- }
287
287
` ) ) ;
288
288
}
289
289
} ) ;
You can’t perform that action at this time.
0 commit comments