Skip to content

Commit 9ffed32

Browse files
committed
refactor: remove .compileComponents() as it is no more needed with the CLI
1 parent 15d9fad commit 9ffed32

9 files changed

+9
-9
lines changed

src/app/components/async-stream.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Async Compnent', () => {
1111
beforeEach(async(() => {
1212
TestBed.configureTestingModule({
1313
declarations: [AsyncComponent]
14-
}).compileComponents();
14+
});
1515
}));
1616

1717
beforeEach(() => {

src/app/components/content-projection.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('ContentProjectionComponent', () => {
2222
beforeEach(async(() => {
2323
TestBed.configureTestingModule({
2424
declarations: [TestComponent, CollapsiblePanelComponent]
25-
}).compileComponents();
25+
});
2626
}));
2727

2828
beforeEach(() => {

src/app/components/counter.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('CounterComponent', () => {
1515
beforeEach(async(() => {
1616
TestBed.configureTestingModule({
1717
declarations: [CounterComponent]
18-
}).compileComponents();
18+
});
1919
}));
2020

2121
beforeEach(() => {

src/app/components/domtesting.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('DomTestingComponent', () => {
1010
beforeEach(async(() => {
1111
TestBed.configureTestingModule({
1212
declarations: [DomTestingComponent]
13-
}).compileComponents();
13+
});
1414
}));
1515

1616
beforeEach(() => {

src/app/components/dynamic-css-classes.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('DynamicCssClassesComponent', () => {
1010
beforeEach(async(() => {
1111
TestBed.configureTestingModule({
1212
declarations: [DynamicCssClassesComponent]
13-
}).compileComponents();
13+
});
1414
}));
1515

1616
beforeEach(() => {

src/app/components/dynamic-styles.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('DynamicStylesComponent', () => {
1212

1313
TestBed.configureTestingModule({
1414
declarations: [DynamicStylesComponent]
15-
}).compileComponents();
15+
});
1616
}));
1717

1818
beforeEach(() => {

src/app/components/input.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('InputComponent', () => {
99
beforeEach(async(() => {
1010
TestBed.configureTestingModule({
1111
declarations: [InputComponent]
12-
}).compileComponents();
12+
});
1313
}));
1414

1515
beforeEach(() => {

src/app/components/nested.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('NestedComponentTesting', () => {
2424
beforeEach(async(() => {
2525
TestBed.configureTestingModule({
2626
declarations: [NestedComponentTesting, CollapsiblePanel]
27-
}).compileComponents();
27+
});
2828
}));
2929

3030
beforeEach(() => {

src/app/components/output.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('OutputComponent', () => {
99
beforeEach(async(() => {
1010
TestBed.configureTestingModule({
1111
declarations: [OutputComponent]
12-
}).compileComponents();
12+
});
1313
}));
1414

1515
beforeEach(() => {

0 commit comments

Comments
 (0)