[ACS-7266] checkboxes in sorting boxes are put on the right side of the text instead of the left side (#11009)

* [ACS-7266] Fix for checkboxes position

* [ACS-7266] Unit test

* [ACS-7266] Addressed comment
This commit is contained in:
AleksanderSklorz
2025-07-16 09:13:10 +02:00
committed by GitHub
parent e5fcfde2ec
commit 89380f2905
3 changed files with 20 additions and 1 deletions

View File

@@ -75,6 +75,10 @@ export class UnitTestingUtils {
return this.debugElement.query(By.directive(directive));
}
getAllByDirective(directive: Type<any>): DebugElement[] {
return this.debugElement.queryAll(By.directive(directive));
}
/** Perform actions */
clickByCSS(selector: string): void {