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