member_webapp/@overflow/notification/component/badge/badge.component.spec.ts
2018-05-25 20:59:18 +09:00

26 lines
693 B
TypeScript

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