2018-08-28 13:54:25 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { HeadBarComponent } from './head-bar.component';
|
2018-09-02 11:05:09 +02:00
|
|
|
import { E2EImportsModule } from '../../../../e2e-imports.module';
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
describe('HeadBarComponent', () => {
|
|
|
|
let component: HeadBarComponent;
|
|
|
|
let fixture: ComponentFixture<HeadBarComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule]
|
2018-08-28 13:54:25 +02:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(HeadBarComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|