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(); }); });