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

26 lines
676 B
TypeScript
Executable File

import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { BarsChartComponent } from './bars-chart.component';
describe('BarsChartComponent', () => {
let component: BarsChartComponent;
let fixture: ComponentFixture<BarsChartComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [BarsChartComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BarsChartComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});