26 lines
693 B
TypeScript
Raw Normal View History

2018-04-06 15:59:49 +09:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2018-05-25 20:59:18 +09:00
import { NotificationBadgeComponent } from './badge.component';
2018-04-06 15:59:49 +09:00
2018-04-06 20:02:18 +09:00
describe('NotificationBadgeComponent', () => {
let component: NotificationBadgeComponent;
let fixture: ComponentFixture<NotificationBadgeComponent>;
2018-04-06 15:59:49 +09:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2018-04-06 20:02:18 +09:00
declarations: [ NotificationBadgeComponent ]
2018-04-06 15:59:49 +09:00
})
.compileComponents();
}));
beforeEach(() => {
2018-04-06 20:02:18 +09:00
fixture = TestBed.createComponent(NotificationBadgeComponent);
2018-04-06 15:59:49 +09:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});