member_webapp/@overflow/notification/component/list/list.component.spec.ts

26 lines
686 B
TypeScript
Raw Normal View History

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