summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts
diff options
context:
space:
mode:
authorTao Shen <shentao@chinamobile.com>2019-09-29 07:08:09 +0000
committerGerrit Code Review <gerrit@onap.org>2019-09-29 07:08:09 +0000
commit61950978ddf5a13b5f1a9be5c5eb8391fcd696f4 (patch)
treebec09cd8bdfcc400b59464e466aa93053d5b081f /usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts
parent7bda6e4948e9e38dc2c3f0e01af9e0390b8548db (diff)
parentf1a0ffa2e0323a61141453c56f12218e3e57a141 (diff)
Merge "feat:top card code split into new components of service-list page"
Diffstat (limited to 'usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts')
-rw-r--r--usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts b/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts
new file mode 100644
index 00000000..b2d2cbb4
--- /dev/null
+++ b/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { TopCardComponent } from './top-card.component';
+
+describe('TopCardComponent', () => {
+ let component: TopCardComponent;
+ let fixture: ComponentFixture<TopCardComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ TopCardComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(TopCardComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});