24 lines
628 B
TypeScript
24 lines
628 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { PlotWidgetComponent } from './plot-widget.component';
|
|
|
|
describe('PlotWidgetComponent', () => {
|
|
let component: PlotWidgetComponent;
|
|
let fixture: ComponentFixture<PlotWidgetComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ PlotWidgetComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(PlotWidgetComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|