mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
17 lines
438 B
TypeScript
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();
|
||
|
|
});
|
||
|
|
});
|