File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/angular_devkit/build_angular Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ export class ProtractorBuilder implements Builder<ProtractorBuilderOptions> {
131131 }
132132
133133 private _runProtractor ( root : Path , options : ProtractorBuilderOptions ) : Observable < BuildEvent > {
134- const additionalProtractorConfig = {
134+ const additionalProtractorConfig : Partial < ProtractorBuilderOptions > = {
135135 elementExplorer : options . elementExplorer ,
136136 baseUrl : options . baseUrl ,
137- spec : options . specs . length ? options . specs : undefined ,
137+ specs : options . specs . length ? options . specs : undefined ,
138138 suite : options . suite ,
139139 } ;
140140
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ describe('Protractor Builder', () => {
3232
3333 it ( 'overrides protractor specs' , ( done ) => {
3434 host . scopedSync ( ) . rename ( normalize ( './e2e/app.e2e-spec.ts' ) ,
35- normalize ( './e2e/renamed-app.e2e- spec.ts' ) ) ;
35+ normalize ( './e2e/renamed-app.e2e. spec.ts' ) ) ;
3636
37- const overrides = { specs : [ './e2e/renamed-app.e2e- spec.ts' ] } ;
37+ const overrides = { specs : [ './e2e/renamed-app.e2e. spec.ts' ] } ;
3838
3939 runTargetSpec ( host , protractorTargetSpec , overrides ) . pipe (
4040 retry ( 3 ) ,
You can’t perform that action at this time.
0 commit comments