/* 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 { GoogleTranslateComponent } from './google-translate.component'; describe('GoogleTranslateComponent', () => { let component: GoogleTranslateComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ GoogleTranslateComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(GoogleTranslateComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });