import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { LanguageComponent } from './language.component'; describe('LanguageComponent', () => { let component: LanguageComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ LanguageComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(LanguageComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });