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 = {
1313 './src/**/*.e2e-spec.ts'
1414 ],
1515 capabilities: {
16- ' browserName' : 'chrome'
16+ browserName: 'chrome'
1717 },
1818 directConnect: true,
1919 baseUrl: 'http://localhost:4200/',
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exports.config = {
1010 './e2e/**/*.e2e-spec.ts'
1111 ] ,
1212 capabilities : {
13- ' browserName' : 'chrome'
13+ browserName : 'chrome'
1414 } ,
1515 directConnect : true ,
1616 baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exports.config = {
1010 './e2e/**/*.e2e-spec.ts'
1111 ] ,
1212 capabilities : {
13- ' browserName' : 'chrome'
13+ browserName : 'chrome'
1414 } ,
1515 directConnect : true ,
1616 baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ exports.config = {
99 './src/**/*.e2e-spec.ts'
1010 ] ,
1111 capabilities : {
12- ' browserName' : 'chrome'
12+ browserName : 'chrome'
1313 } ,
1414 directConnect : true ,
1515 baseUrl : 'http://localhost:4200/' ,
Original file line number Diff line number Diff line change @@ -262,8 +262,8 @@ export function useCIChrome(projectDir: string) {
262262 . then ( ( ) => {
263263 if ( fs . existsSync ( protractorConf ) ) {
264264 return replaceInFile ( protractorConf ,
265- `' browserName' : 'chrome'` ,
266- `' browserName' : 'chrome',
265+ `browserName: 'chrome'` ,
266+ `browserName: 'chrome',
267267 chromeOptions: {
268268 args: ['--headless'],
269269 binary: require('puppeteer').executablePath()
@@ -279,11 +279,11 @@ export function useCIChrome(projectDir: string) {
279279 . then ( ( ) => replaceInFile ( karmaConf ,
280280 `browsers: ['Chrome']` ,
281281 `browsers: ['Chrome'],
282- customLaunchers: {
283- ChromeHeadlessCI: {
284- base: 'ChromeHeadless',
282+ customLaunchers: {
283+ ChromeHeadlessCI: {
284+ base: 'ChromeHeadless',
285+ }
285286 }
286- }
287287 ` ) ) ;
288288 }
289289 } ) ;
You can’t perform that action at this time.
0 commit comments