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