Skip to content

Commit a1d596c

Browse files
cexbrayatalan-agius4
authored andcommitted
test(@schematics/angular): test names typos
1 parent 979bce4 commit a1d596c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/schematics/angular/universal/index_spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ describe('Universal Schematic', () => {
163163
expect(targets.build.options.outputPath).toEqual('dist/bar/browser');
164164
});
165165

166-
it('should add a server transition to BrowerModule import', async () => {
166+
it('should add a server transition to BrowserModule import', async () => {
167167
const tree = await schematicRunner
168168
.runSchematicAsync('universal', defaultOptions, appTree)
169169
.toPromise();
@@ -226,7 +226,7 @@ describe('Universal Schematic', () => {
226226
expect(tree.exists(filePath)).toEqual(true);
227227
});
228228

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 () => {
230230
const tree = await schematicRunner
231231
.runSchematicAsync('universal', defaultOptions, appTree)
232232
.toPromise();
@@ -236,7 +236,7 @@ describe('Universal Schematic', () => {
236236
expect(compilerOptions.types).not.toContain('@angular/localize/init');
237237
});
238238

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 () => {
240240
addPackageJsonDependency(appTree, {
241241
name: '@angular/localize',
242242
type: NodeDependencyType.Default,

0 commit comments

Comments
 (0)