mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 05:45:50 +00:00
17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { NotificationHolderService } from './notification-holder.service';
|
|
|
|
describe('NotificationHolderService', () => {
|
|
let service: NotificationHolderService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(NotificationHolderService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|