import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ActionItemViewComponent } from './action-item-view.component'; describe('ActionItemViewComponent', () => { let component: ActionItemViewComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ActionItemViewComponent ], }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ActionItemViewComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });