funky-framadate-front/src/app/core/components/sibebar/navigation/navigation.component.spec.ts

25 lines
627 B
TypeScript
Raw Normal View History

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NavigationComponent } from './navigation.component';
describe('NavigationComponent', () => {
2020-04-21 10:50:26 +02:00
let component: NavigationComponent;
let fixture: ComponentFixture<NavigationComponent>;
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [NavigationComponent],
}).compileComponents();
}));
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(NavigationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
});