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