Files
doneit-web/src/app/module/notification/data/notification-repository.service.spec.ts
T
2024-06-27 16:53:45 +01:00

17 lines
438 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { NotificationRepositoryService } from './notification-repository.service';
describe('NotificationRepositoryService', () => {
let service: NotificationRepositoryService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NotificationRepositoryService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});