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