2018-04-06 15:59:49 +09:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2018-06-01 19:27:27 +09:00
|
|
|
import { InfraMapComponent } from './infra-map.component';
|
2018-04-06 15:59:49 +09:00
|
|
|
|
2018-06-01 19:27:27 +09:00
|
|
|
describe('InfraMapComponent', () => {
|
|
|
|
let component: InfraMapComponent;
|
|
|
|
let fixture: ComponentFixture<InfraMapComponent>;
|
2018-04-06 15:59:49 +09:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-06-01 19:27:27 +09:00
|
|
|
declarations: [InfraMapComponent]
|
2018-04-06 15:59:49 +09:00
|
|
|
})
|
2018-04-06 20:02:18 +09:00
|
|
|
.compileComponents();
|
2018-04-06 15:59:49 +09:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-06-01 19:27:27 +09:00
|
|
|
fixture = TestBed.createComponent(InfraMapComponent);
|
2018-04-06 15:59:49 +09:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|