Files
cmc/support-portal-frontend/src/app/component/publications/publications.component.spec.ts
2025-11-06 14:52:45 +05:30

26 lines
668 B
TypeScript

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