25 lines
625 B
TypeScript
Raw Normal View History

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