Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { APPLICATION_BUILDER_INFO, BASE_OPTIONS, describeBuilder } from '../setu

describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
describe('Behavior: "Component Stylesheets"', () => {
it('should successfuly compile with an empty inline style', async () => {
it('should successfully compile with an empty inline style', async () => {
await harness.modifyFile('src/app/app.component.ts', (content) => {
return content.replace('styleUrls', 'styles').replace('./app.component.css', '');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
.content.not.toMatch(/from ['"]@angular\/common['"]/);
});

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

it('should externalize the listed depedencies in Web Workers when option is set', async () => {
it('should externalize the listed dependencies in Web Workers when option is set', async () => {
harness.useTarget('build', {
...BASE_OPTIONS,
externalDependencies: ['path'],
Expand Down
Loading