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