Files
kustomize/internal/tools/ui/src/app/timeseries/timeseries.component.spec.ts
2019-08-22 15:39:00 -07:00

26 lines
656 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TimeseriesComponent } from './timeseries.component';
describe('TimeseriesComponent', () => {
let component: TimeseriesComponent;
let fixture: ComponentFixture<TimeseriesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TimeseriesComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TimeseriesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});