25 lines
711 B
TypeScript
25 lines
711 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TaskStatusDetailsComponent } from './task-status-details.component';
|
|
|
|
xdescribe('TaskStatusDetailsComponent', () => {
|
|
let component: TaskStatusDetailsComponent;
|
|
let fixture: ComponentFixture<TaskStatusDetailsComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [TaskStatusDetailsComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TaskStatusDetailsComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create component', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|