member_webapp/@overflow/notification/component/badge/notification.component.spec.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

26 lines
700 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NotificationBadgeComponent } from './notification.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();
});
});