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

26 lines
639 B
TypeScript

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