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