/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { GoogleMapsComponent } from './google-maps.component'; describe('GoogleMapsComponent', () => { let component: GoogleMapsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ GoogleMapsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(GoogleMapsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });