Skip to content

Commit

Permalink
update scroll shadow test component height for new test window size
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-ErikaMcVey committed Sep 3, 2024
1 parent 8c23a53 commit 4f12754
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe('Scroll shadow directive', () => {
});

it('should not show a shadow when the body is scrollable when disabled', async () => {
cmp.height = 800;
cmp.height = 850;
cmp.enabled = false;
fixture.detectChanges();
await waitForMutationObserver();
Expand Down Expand Up @@ -119,7 +119,7 @@ describe('Scroll shadow directive', () => {
return;
}

cmp.height = 800;
cmp.height = 850;
fixture.detectChanges();
await waitForMutationObserver();
fixture.detectChanges();
Expand Down Expand Up @@ -162,7 +162,7 @@ describe('Scroll shadow directive', () => {
return;
}

cmp.height = 800;
cmp.height = 850;
fixture.detectChanges();
await waitForMutationObserver();
fixture.detectChanges();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,11 @@ export class SkyLookupComponent
this.controlId = this.inputBoxHostSvc.controlId;
this.ariaDescribedBy = this.inputBoxHostSvc.ariaDescribedBy;

console.log('populating with');
console.log(this.inputTemplateRef);
console.log(this.inputTemplateRef.elementRef);
console.log(this.inputTemplateRef.elementRef.nativeElement);

this.inputBoxHostSvc.populate({
inputTemplate: this.inputTemplateRef,
buttonsTemplate: this.enableShowMore
Expand Down

0 comments on commit 4f12754

Please sign in to comment.