forked from tykayn/funky-framadate-front
26 lines
656 B
TypeScript
26 lines
656 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { NavigationComponent } from './navigation.component';
|
||
|
|
||
|
describe('NavigationComponent', () => {
|
||
|
let component: NavigationComponent;
|
||
|
let fixture: ComponentFixture<NavigationComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ NavigationComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(NavigationComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|