member_webapp/@overflow/noauth-probe/container/list/list-container.component.spec.ts
crusader c613e312f0 ing
2018-05-24 16:26:43 +09:00

26 lines
678 B
TypeScript

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