abm-imagenes.component.spec.ts
664 Bytes
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AbmImagenesComponent } from './abm-imagenes.component';
describe('AbmImagenesComponent', () => {
let component: AbmImagenesComponent;
let fixture: ComponentFixture<AbmImagenesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AbmImagenesComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AbmImagenesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});