summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts
diff options
context:
space:
mode:
authorEkko Chang <ekko.chang@qct.io>2019-04-29 14:14:58 +0800
committerEkko Chang <ekko.chang@qct.io>2019-04-29 14:14:58 +0800
commitc4c381d400abc54a0deb14ee828c51aed6d16873 (patch)
tree043bb32228ab78b11eb16e70fcc89ed368d72b94 /components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts
parentc0cc89e2acb5f702f03e932dcd6a75ba8aba4618 (diff)
First commit of front-end admin UI
1. framework of front-end Issue-ID: DCAEGEN2-1188 Change-Id: Ib42e20f87f3f4fa5f0aee65c88b1efbfe1523b93 Signed-off-by: Ekko Chang <ekko.chang@qct.io>
Diffstat (limited to 'components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts')
-rw-r--r--components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts b/components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts
new file mode 100644
index 00000000..f29709fd
--- /dev/null
+++ b/components/datalake-handler/admin/src/app/sidebar/sidebar.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { SidebarComponent } from './sidebar.component';
+
+describe('SidebarComponent', () => {
+ let component: SidebarComponent;
+ let fixture: ComponentFixture<SidebarComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ SidebarComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(SidebarComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});