Skip to content

Commit a8465d4

Browse files
refactor: fix several typos (#31716)
This commit fixes a number of typos in tests.
1 parent c3c9ac5 commit a8465d4

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

Lines changed: 1 addition & 1 deletion
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 Stylesheets"', () => {
14-
it('should successfuly compile with an empty inline style', async () => {
14+
it('should successfully compile with an empty inline style', async () => {
1515
await harness.modifyFile('src/app/app.component.ts', (content) => {
1616
return content.replace('styleUrls', 'styles').replace('./app.component.css', '');
1717
});

packages/angular/build/src/builders/application/tests/options/external-dependencies_spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
2424
.content.not.toMatch(/from ['"]@angular\/common['"]/);
2525
});
2626

27-
it('should only externalize the listed depedencies when option is set', async () => {
27+
it('should only externalize the listed dependencies when option is set', async () => {
2828
harness.useTarget('build', {
2929
...BASE_OPTIONS,
3030
externalDependencies: ['@angular/core'],
@@ -39,7 +39,7 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
3939
.content.not.toMatch(/from ['"]@angular\/common['"]/);
4040
});
4141

42-
it('should externalize the listed depedencies in Web Workers when option is set', async () => {
42+
it('should externalize the listed dependencies in Web Workers when option is set', async () => {
4343
harness.useTarget('build', {
4444
...BASE_OPTIONS,
4545
externalDependencies: ['path'],

0 commit comments

Comments
 (0)