Files
doneit-web/src/app/services/native-notification.service.spec.ts
T

17 lines
418 B
TypeScript
Raw Normal View History

2022-01-26 17:28:55 +01:00
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();
});
});