fuse-angular/src/app/navigation/nav-collapse/nav-collapse.component.spec.ts
mustafahlvc c3e241c81c Layout Service created,
Starting the build navigation,
Some Components added for tests.
2017-07-08 19:12:52 +03:00

26 lines
668 B
TypeScript

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