diff options
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.ts | 25 |
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(); + }); +}); |