25 lines
674 B
TypeScript
Raw Normal View History

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