import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { NotificationsComponent } from './notifications.component'; xdescribe('NotificationsComponent', () => { let component: NotificationsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ NotificationsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(NotificationsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });