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