25 lines
674 B
TypeScript

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