1
0
Files
yel-dspace-angular/src/app/navbar/navbar-section/navbar-section.component.spec.ts
2018-12-06 15:50:12 +01:00

26 lines
678 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NavbarSectionComponent } from './navbar-section.component';
describe('NavbarSectionComponent', () => {
let component: NavbarSectionComponent;
let fixture: ComponentFixture<NavbarSectionComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NavbarSectionComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NavbarSectionComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});