member_webapp/@overflow/notification/component/list/list.component.spec.ts
2018-05-25 12:31:08 +09:00

26 lines
686 B
TypeScript

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