Files
adastra_app/src/app/components/shared/helpers-chart/line-chart.component.spec.ts
T

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();
});
});