26 lines
693 B
TypeScript
26 lines
693 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { YAxisDefinitionComponent } from './y-axis-definition.component';
|
|
|
|
describe('YAxisDefinitionComponent', () => {
|
|
let component: YAxisDefinitionComponent;
|
|
let fixture: ComponentFixture<YAxisDefinitionComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ YAxisDefinitionComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(YAxisDefinitionComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|