Sengi-Windows-MacOS-Linux/src/app/services/notification.service.spec.ts

16 lines
411 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { NotificationService } from './notification.service';
xdescribe('NotificationService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [NotificationService]
});
});
it('should be created', inject([NotificationService], (service: NotificationService) => {
expect(service).toBeTruthy();
}));
});