Webnotification service

This commit is contained in:
Eudes Inácio
2021-06-28 13:36:08 +01:00
parent eb499f50a7
commit d4d3f3eb76
3 changed files with 254 additions and 14 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { WebNotificationsService } from './webnotifications.service';
describe('WebNotificationsService', () => {
let service: WebNotificationsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(WebNotificationsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});