File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
modules/schematics/src/container Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ describe('Container Schematic', () => {
6060 const tree = schematicRunner . runSchematic ( 'container' , options , appTree ) ;
6161 const content = getFileContent ( tree , '/src/app/foo/foo.component.ts' ) ;
6262 expect ( content ) . toMatch (
63- / c o n s t r u c t o r \( p r i v a t e s t o r e \: S t o r e \< f r o m S t o r e \. S t a t e \> \) { } /
63+ / c o n s t r u c t o r \( p r i v a t e s t o r e \: S t o r e \< f r o m S t o r e \. S t a t e \> \) { } \n \n /
6464 ) ;
6565 } ) ;
6666
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ function addStateToComponent(options: FeatureOptions) {
9696 const constructorUpdate = new ReplaceChange (
9797 componentPath ,
9898 pos ,
99- ` ${ constructorText } ` ,
99+ ` ${ constructorText } \n\n ` ,
100100 `\n\n ${ storeConstructor } `
101101 ) ;
102102
You can’t perform that action at this time.
0 commit comments