All files / src/app/features/jobs/job-editIion job-edition.component.ts

84.61% Statements 11/13
0% Branches 0/4
66.66% Functions 2/3
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 179x 9x 9x 9x 9x 9x               9x 1x    
import { Component } from '@angular/core';
import { JobFormComponent } from '@app/features/jobs/forms/job-form/job-form.component';
import { JobActivitiesFormComponent } from '@app/features/jobs/forms/job-actitivies-form/job-actitivities-form.component';
import { JobAttachmentsFormComponent } from '@app/features/jobs/forms/job-attachments-form/job-attachments-form.component';
import { BaseChildComponent } from '@core/component/base-child.component';
import { JobAttachmentsComponent } from '@features/jobs/job-attachments/job-attachments.component';
 
@Component({
  selector: 'app-job-edition',
  imports: [JobFormComponent, JobActivitiesFormComponent, JobAttachmentsFormComponent, JobAttachmentsComponent],
  templateUrl: './job-edition.component.html',
  styleUrl: './job-edition.component.scss'
})
export class JobEditionComponent extends BaseChildComponent {
  constructor() {super()}
}