Skip to content

Commit

Permalink
Rebase went little bit wrong -II
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoAlbano committed Dec 11, 2023
1 parent 94d3541 commit de3d69d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ describe('SearchDateRangeComponent', () => {
betweenStartDate: undefined,
betweenEndDate: undefined
};
let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mdc-radio__native-control');
let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-in-last"] .mdc-radio__native-control');
dateRangeTypeRadioButton.click();
selectDropdownOption('date-range-in-last-option-weeks');
enterValueInInputFieldAndTriggerEvent('date-range-in-last-input', '');
Expand All @@ -246,7 +246,7 @@ describe('SearchDateRangeComponent', () => {
betweenStartDate: '',
betweenEndDate: ''
};
dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mdc-radio__native-control');
dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-between"] .mdc-radio__native-control');
dateRangeTypeRadioButton.click();
fixture.detectChanges();
expect(component.changed.emit).not.toHaveBeenCalledWith(value);
Expand All @@ -261,7 +261,7 @@ describe('SearchDateRangeComponent', () => {
betweenStartDate: null,
betweenEndDate: null
};
let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mdc-radio__native-control');
let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-in-last"] .mdc-radio__native-control');
dateRangeTypeRadioButton.click();
selectDropdownOption('date-range-in-last-option-weeks');
enterValueInInputFieldAndTriggerEvent('date-range-in-last-input', '5');
Expand All @@ -283,7 +283,7 @@ describe('SearchDateRangeComponent', () => {
betweenStartDate: startDateSampleValue,
betweenEndDate: endDateSampleValue
};
dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mdc-radio__native-control');
dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-between"] .mdc-radio__native-control');
dateRangeTypeRadioButton.click();
component.betweenStartDateFormControl.setValue(startDateSampleValue);
component.betweenEndDateFormControl.setValue(endDateSampleValue);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,7 @@ export class SearchPropertiesComponent implements OnInit, AfterViewChecked, Sear
const extraFreeSpace = 20;
this._fileSizeOperatorsMaxWidth = Math.max(...this._fileSizeOperators.map((operator) =>
this.getOperatorNameWidth(operator, this.getCanvasFont(this.fileSizeOperatorSelectElement.nativeElement)))) +
<<<<<<< Updated upstream
this.fileSizeOperatorSelectElement.nativeElement.querySelector('.mat-mdc-select-arrow').clientWidth +
=======
this.fileSizeOperatorSelectElement.nativeElement.querySelector('.mat-mdc-select-arrow-wrapper').clientWidth +
>>>>>>> Stashed changes
extraFreeSpace;
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@
width: 100%;
}

<<<<<<< Updated upstream
/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version. */
.mat-select-value-text {
=======
.mat-mdc-select-value-text {
>>>>>>> Stashed changes
font-size: var(--theme-body-1-font-size);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,8 @@ describe('DropdownCloudWidgetComponent', () => {

await openSelect();

<<<<<<< Updated upstream
const options = fixture.debugElement.queryAll(By.css('.mat-mdc-option'));
expect(options[0].nativeElement.innerText).toBe('default1_value');
=======
const option = fixture.debugElement.query(By.css('.mdc-list-item__primary-text'));
expect(option.nativeElement.innerText).toBe('default1_value');
>>>>>>> Stashed changes
});

it('should preselect dropdown widget value when String (defined value) passed ', async () => {
Expand All @@ -232,11 +227,7 @@ describe('DropdownCloudWidgetComponent', () => {
fixture.detectChanges();

await openSelect();
<<<<<<< Updated upstream
const options = fixture.debugElement.queryAll(By.css('.mat-mdc-option'));
=======
const options = fixture.debugElement.queryAll(By.css('.mdc-list-item__primary-text'));
>>>>>>> Stashed changes
expect(options[0].nativeElement.innerText).toBe('default1_value');
expect(widget.field.form.values['dropdown-id']).toEqual({ id: 'opt1', name: 'default1_value' });
});
Expand Down Expand Up @@ -460,12 +451,7 @@ describe('DropdownCloudWidgetComponent', () => {
expect(selectedPlaceHolder.nativeElement.getInnerHTML()).toEqual('option_1, option_2');

await openSelect('#dropdown-id');

<<<<<<< Updated upstream
const options = fixture.debugElement.queryAll(By.css('mat-option.mdc-list-item--selected span'));
=======
const options = fixture.debugElement.queryAll(By.css('.mat-mdc-selected span'));
>>>>>>> Stashed changes
const options = fixture.debugElement.queryAll(By.css('.mdc-list-item--selected span'));
expect(Array.from(options).map(({ nativeElement }) => nativeElement.getInnerHTML().trim()))
.toEqual(['option_1', 'option_2']);
});
Expand Down Expand Up @@ -533,12 +519,8 @@ describe('DropdownCloudWidgetComponent', () => {
expect(selectedPlaceHolder.nativeElement.getInnerHTML()).toEqual('option_3, option_4');

await openSelect('#dropdown-id');
const options = fixture.debugElement.queryAll(By.css('.mdc-list-item--selected span'));

<<<<<<< Updated upstream
const options = fixture.debugElement.queryAll(By.css('mat-option.mdc-list-item--selected span'));
=======
const options = fixture.debugElement.queryAll(By.css('.mat-mdc-selected span'));
>>>>>>> Stashed changes
expect(Array.from(options).map(({ nativeElement }) => nativeElement.getInnerHTML().trim()))
.toEqual(['option_3', 'option_4']);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,8 @@
padding-top: 0 !important;
width: 100%;
}
<<<<<<< Updated upstream
/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version. */
.mat-select-value-text {
=======

.mat-mdc-select-value-text {
>>>>>>> Stashed changes
font-size: var(--theme-body-1-font-size);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,16 +339,11 @@ describe('StartProcessComponent', () => {
selectElement.click();

fixture.detectChanges();
<<<<<<< Updated upstream

fixture.componentInstance.inputAutocomplete.openPanel();
fixture.detectChanges();
// await fixture.whenStable();
const options: any = fixture.debugElement.queryAll(By.css('.mdc-list-item__primary-textk'));
=======
await fixture.whenStable();
const options: any = fixture.debugElement.queryAll(By.css('.mdc-list-item__primary-text'));
>>>>>>> Stashed changes
const options: any = fixture.debugElement.queryAll(By.css('.mdc-list-item__primary-textk'));


expect(options.length).toBe(2);
expect(options[0].nativeElement.innerText).toBe('My Process 1');
Expand Down

0 comments on commit de3d69d

Please sign in to comment.