Sengi-Windows-MacOS-Linux/src/app/components/stream/status/attachements/attachement-image/attachement-image.component...

26 lines
700 B
TypeScript
Raw Normal View History

2020-04-15 04:12:07 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AttachementImageComponent } from './attachement-image.component';
xdescribe('AttachementImageComponent', () => {
let component: AttachementImageComponent;
let fixture: ComponentFixture<AttachementImageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AttachementImageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AttachementImageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});