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