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