Files
perfdb/pdb-js/src/app/plot-view/plot-view.component.spec.ts
Andreas Huber 398774dbd8 updating angular core and cli
step 1 of update Angular 10 -> 11
2020-11-23 11:31:45 +01:00

26 lines
657 B
TypeScript

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