@shikshalokam/sl-reports
Version:
Library to integrate questionnaire in SL Projects
26 lines (20 loc) • 678 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ScatterChartsComponent } from './scatter-charts.component';
describe('ScatterChartsComponent', () => {
let component: ScatterChartsComponent;
let fixture: ComponentFixture<ScatterChartsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ScatterChartsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ScatterChartsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});