member_webapp/@overflow/infra/component/infra-map.component.spec.ts
crusader fd369d3519 ing
2018-06-01 19:27:27 +09:00

26 lines
643 B
TypeScript

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