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