Fix the Angular Test Issues
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / ui / notification.service.spec.ts
index 61110c9..b6953e6 100644 (file)
 import { TestBed } from '@angular/core/testing';
 
 import { NotificationService } from './notification.service';
+import { ToastrModule } from 'ngx-toastr';
 
 describe('NotificationService', () => {
-  beforeEach(() => TestBed.configureTestingModule({}));
+  beforeEach(() => TestBed.configureTestingModule({
+    imports: [ToastrModule.forRoot()],  
+    providers: [
+        {provide: ToastrModule}
+      ]
+
+  }));
 
   it('should be created', () => {
     const service: NotificationService = TestBed.get(NotificationService);