import { TestBed } from '@angular/core/testing'; import { NotificationsService } from './notifications.service'; xdescribe('NotificationsService', () => { let service: NotificationsService; beforeEach(() => { TestBed.configureTestingModule({}); service = TestBed.inject(NotificationsService); }); it('should be created', () => { expect(service).toBeTruthy(); }); });