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