Files
ipwa/src/app/admin-view/notifications/notifications.service.spec.ts

17 lines
393 B
TypeScript

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();
});
});