1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { ToastModule } from 'ng2-toastr';
4 import { PopoverModule } from 'ngx-bootstrap/popover';
6 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
7 import { SharedModule } from '../../../shared/shared.module';
8 import { NotificationsComponent } from './notifications.component';
10 describe('NotificationsComponent', () => {
11 let component: NotificationsComponent;
12 let fixture: ComponentFixture<NotificationsComponent>;
15 imports: [PopoverModule.forRoot(), SharedModule, ToastModule.forRoot()],
16 declarations: [NotificationsComponent],
17 providers: i18nProviders
21 fixture = TestBed.createComponent(NotificationsComponent);
22 component = fixture.componentInstance;
23 fixture.detectChanges();
26 it('should create', () => {
27 expect(component).toBeTruthy();