X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=blobdiff_plain;f=src%2Fapp%2Ftop-bar%2Ftop-bar.component.spec.ts;fp=src%2Fapp%2Ftop-bar%2Ftop-bar.component.spec.ts;h=7629c734c18c8e4ff3b559ec8c7ecf5f5388a87e;hp=0000000000000000000000000000000000000000;hb=7b128c4886ec1dbe8c9f036b447ce2a2697b61a9;hpb=da3794738804e7a3b2d59c6609f5f3ddf1a6bbc7 diff --git a/src/app/top-bar/top-bar.component.spec.ts b/src/app/top-bar/top-bar.component.spec.ts new file mode 100644 index 0000000..7629c73 --- /dev/null +++ b/src/app/top-bar/top-bar.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { TopBarComponent } from './top-bar.component'; + +describe('TopBarComponent', () => { + let component: TopBarComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ TopBarComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(TopBarComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +});