26 lines
676 B
TypeScript
Executable File
26 lines
676 B
TypeScript
Executable File
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { LineChartComponent } from './line-chart.component';
|
|
|
|
describe('LineChartComponent', () => {
|
|
let component: LineChartComponent;
|
|
let fixture: ComponentFixture<LineChartComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [LineChartComponent]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(LineChartComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|