diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-09-30 13:06:54 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-09-30 13:07:17 +0800 |
commit | ff6a0a2907a83c8057610195f0860f6ef4e6aa1c (patch) | |
tree | 6bd922b548d45be7500c2233564ddfc3f78bf5ba /usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts | |
parent | cdbcd0fe038918c360e8e8b2fc04d57e14e22b1c (diff) |
feat: adjust the file structure of the customer component
Change-Id: I1290380f894e8c38b90f9e6829aaac5e96d67194
Issue-ID: USECASEUI-307
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts')
-rw-r--r-- | usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts b/usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts new file mode 100644 index 00000000..f185e7a7 --- /dev/null +++ b/usecaseui-portal/src/app/views/management/customer/customer.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CustomerComponent } from './customer.component'; + +describe('CustomerComponent', () => { + let component: CustomerComponent; + let fixture: ComponentFixture<CustomerComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CustomerComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CustomerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |