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