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