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