Files
doneit-web/src/app/services/native-notification.service.spec.ts
T
Peter Maquiran 66098ae4e8 notification
2022-01-26 17:28:55 +01:00

17 lines
418 B
TypeScript

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