import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ShowImagesComponent } from './show-images.component'; describe('ShowImagesComponent', () => { let component: ShowImagesComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ShowImagesComponent] }) .compileComponents(); fixture = TestBed.createComponent(ShowImagesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });