Files
doneit-web/src/app/services/webnotifications.service.spec.ts
T
2021-06-28 13:36:08 +01:00

17 lines
407 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { WebNotificationsService } from './webnotifications.service';
describe('WebNotificationsService', () => {
let service: WebNotificationsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(WebNotificationsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});