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