CST-11045 Provided coarnotify section logic and dataservices for configs

This commit is contained in:
Mattia Vianelli
2023-10-25 21:09:07 +02:00
parent 494295cd97
commit 7ed4d1457d
21 changed files with 792 additions and 164 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SubmissionSectionCoarNotifyComponent } from './section-coar-notify.component';
describe('LdnServiceComponent', () => {
let component: SubmissionSectionCoarNotifyComponent;
let fixture: ComponentFixture<SubmissionSectionCoarNotifyComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [SubmissionSectionCoarNotifyComponent]
})
.compileComponents();
fixture = TestBed.createComponent(SubmissionSectionCoarNotifyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});