[CST-4878] Created component

This commit is contained in:
Rezart Vata
2021-12-09 18:22:35 +01:00
parent 7218c450e6
commit 31fd89a9fc
5 changed files with 48 additions and 1 deletions

View File

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