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