@@ -163,7 +163,7 @@ describe('Universal Schematic', () => {
163
163
expect ( targets . build . options . outputPath ) . toEqual ( 'dist/bar/browser' ) ;
164
164
} ) ;
165
165
166
- it ( 'should add a server transition to BrowerModule import' , async ( ) => {
166
+ it ( 'should add a server transition to BrowserModule import' , async ( ) => {
167
167
const tree = await schematicRunner
168
168
. runSchematicAsync ( 'universal' , defaultOptions , appTree )
169
169
. toPromise ( ) ;
@@ -226,7 +226,7 @@ describe('Universal Schematic', () => {
226
226
expect ( tree . exists ( filePath ) ) . toEqual ( true ) ;
227
227
} ) ;
228
228
229
- it ( `should not add import to '@angular/localize' as type in 'tsconfig.server.json' when it's not a depedency ` , async ( ) => {
229
+ it ( `should not add import to '@angular/localize' as type in 'tsconfig.server.json' when it's not a dependency ` , async ( ) => {
230
230
const tree = await schematicRunner
231
231
. runSchematicAsync ( 'universal' , defaultOptions , appTree )
232
232
. toPromise ( ) ;
@@ -236,7 +236,7 @@ describe('Universal Schematic', () => {
236
236
expect ( compilerOptions . types ) . not . toContain ( '@angular/localize/init' ) ;
237
237
} ) ;
238
238
239
- it ( `should add import to '@angular/localize' as type in 'tsconfig.server.json' when it's not a depedency ` , async ( ) => {
239
+ it ( `should add import to '@angular/localize' as type in 'tsconfig.server.json' when it's a dependency ` , async ( ) => {
240
240
addPackageJsonDependency ( appTree , {
241
241
name : '@angular/localize' ,
242
242
type : NodeDependencyType . Default ,
0 commit comments