member_webapp/@overflow/infra/component/map/map.component.spec.ts

26 lines
607 B
TypeScript
Raw Normal View History

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