Files
doneit-web/src/app/services/notification/web-notification-popup.service.spec.ts
T
2021-08-31 11:10:40 +01:00

17 lines
429 B
TypeScript

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