notification

This commit is contained in:
Peter Maquiran
2022-01-26 17:28:55 +01:00
parent 58a32f45d4
commit 66098ae4e8
5 changed files with 87 additions and 15 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { NativeNotificationService } from './native-notification.service';
describe('NativeNotificationService', () => {
let service: NativeNotificationService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NativeNotificationService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});