Skip to content

Commit d512635

Browse files
committed
test: correct test description typos
Correct several small test description typos for the application builder.
1 parent 5c0d76e commit d512635

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/angular/build/src/builders/application/tests/behavior/component-stylesheets_spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
4545
harness.expectFile('dist/browser/main.js').content.not.toContain('variables');
4646
});
4747

48-
it('should generater an error for a missing stylesheet with AOT', async () => {
48+
it('should generate an error for a missing stylesheet with AOT', async () => {
4949
await harness.modifyFile('src/app/app.component.ts', (content) => {
5050
return content.replace('./app.component.css', './not-present.css');
5151
});
@@ -64,7 +64,7 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
6464
);
6565
});
6666

67-
it('should generater an error for a missing stylesheet with JIT', async () => {
67+
it('should generate an error for a missing stylesheet with JIT', async () => {
6868
await harness.modifyFile('src/app/app.component.ts', (content) => {
6969
return content.replace('./app.component.css', './not-present.css');
7070
});

packages/angular/build/src/builders/application/tests/behavior/component-templates_spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { APPLICATION_BUILDER_INFO, BASE_OPTIONS, describeBuilder } from '../setu
1111

1212
describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
1313
describe('Behavior: "Component Templates"', () => {
14-
it('should generater an error for a missing template', async () => {
14+
it('should generate an error for a missing template', async () => {
1515
await harness.modifyFile('src/app/app.component.ts', (content) => {
1616
return content.replace('./app.component.html', './not-present.html');
1717
});

0 commit comments

Comments
 (0)