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