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