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