Files
doneit-web/src/app/services/notifications.service.spec.ts
T

17 lines
392 B
TypeScript
Raw Normal View History

2021-02-01 13:31:33 +01:00
import { TestBed } from '@angular/core/testing';
import { NotificationsService } from './notifications.service';
describe('NotificationsService', () => {
let service: NotificationsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NotificationsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});