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