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