Skip to content

Commit

Permalink
8934-registration-add-an-affiliation-with-typeahead
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonardo Mendoza Fernadez authored and Leonardo Mendoza Fernadez committed Jan 13, 2024
1 parent 23fd1f2 commit 7817a86
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ import { Component, EventEmitter, Input, Output } from '@angular/core'

import { ReactivationLocal } from '../../../types/reactivation.local'
import { BaseStepDirective } from '../BaseStep'
import { FormGroup, Validators } from '@angular/forms'

@Component({
selector: 'app-step-c2',
templateUrl: './step-c.component.html',
templateUrl: './step-c2.component.html',
styleUrls: [
'./step-c.component.scss',
'./step-c2.component.scss',
'../register2.style.scss',
'../register2.scss-theme.scss',
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { ComponentFixture, TestBed } from '@angular/core/testing'

import { StepCComponent } from './step-c.component'
import { StepC2Component } from './step-c2.component'

describe('StepCComponent', () => {
let component: StepCComponent
let fixture: ComponentFixture<StepCComponent>
let component: StepC2Component
let fixture: ComponentFixture<StepC2Component>

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [StepCComponent],
declarations: [StepC2Component],
}).compileComponents()
})

beforeEach(() => {
fixture = TestBed.createComponent(StepCComponent)
fixture = TestBed.createComponent(StepC2Component)
component = fixture.componentInstance
fixture.detectChanges()
})
Expand Down
2 changes: 1 addition & 1 deletion src/app/register2/register.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { Register2Component } from './pages/register/register2.component'
import { StepCComponent } from './components/step-c/step-c.component'
import { FormCurrentEmploymentComponent } from './components/form-current-employment/form-current-employment.component'
import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/material/legacy-autocomplete'
import { StepC2Component } from './components/step-c2/step-c.component'
import { StepC2Component } from './components/step-c2/step-c2.component'
import { MatLegacySelectModule } from '@angular/material/legacy-select'
import { SharedModule } from '../shared/shared.module'

Expand Down

0 comments on commit 7817a86

Please sign in to comment.