Sengi-Windows-MacOS-Linux/src/app/services/navigation.service.spec.ts

16 lines
399 B
TypeScript
Raw Normal View History

2018-09-10 03:55:16 +02:00
import { TestBed, inject } from '@angular/core/testing';
import { NavigationService } from './navigation.service';
2018-10-28 21:58:06 +01:00
xdescribe('NavigationService', () => {
2018-09-10 03:55:16 +02:00
beforeEach(() => {
TestBed.configureTestingModule({
providers: [NavigationService]
});
});
it('should be created', inject([NavigationService], (service: NavigationService) => {
expect(service).toBeTruthy();
}));
});