add web notification popup

This commit is contained in:
Peter Maquiran
2021-08-31 11:10:40 +01:00
parent 8056981ca1
commit b9b3f5be24
3 changed files with 70 additions and 1 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { WebNotificationPopupService } from './web-notification-popup.service';
describe('WebNotificationPopupService', () => {
let service: WebNotificationPopupService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(WebNotificationPopupService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});