publication added newly

This commit is contained in:
2025-11-06 14:52:45 +05:30
parent 311ca61dea
commit a9cc0a9122
18 changed files with 2118 additions and 21 deletions

View File

@ -0,0 +1,25 @@
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();
});
});