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