mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-5362] Add option to make actions button visible only on hover (#7117)
* [AAE-5362] Add option to make actions button visible only on hover * [AAE-5362] Refactor * Unrelated linting fixes
This commit is contained in:
@@ -407,7 +407,7 @@ describe('ContentMetadataComponent', () => {
|
||||
component.displayEmpty = true;
|
||||
|
||||
fixture.detectChanges();
|
||||
await fixture.whenStable()
|
||||
await fixture.whenStable();
|
||||
|
||||
let defaultProp = queryDom(fixture);
|
||||
let exifProp = queryDom(fixture, 'EXIF');
|
||||
@@ -419,7 +419,7 @@ describe('ContentMetadataComponent', () => {
|
||||
component.displayAspect = 'CUSTOM';
|
||||
|
||||
fixture.detectChanges();
|
||||
await fixture.whenStable()
|
||||
await fixture.whenStable();
|
||||
|
||||
defaultProp = queryDom(fixture);
|
||||
exifProp = queryDom(fixture, 'EXIF');
|
||||
@@ -431,7 +431,7 @@ describe('ContentMetadataComponent', () => {
|
||||
component.displayAspect = 'Properties';
|
||||
|
||||
fixture.detectChanges();
|
||||
await fixture.whenStable()
|
||||
await fixture.whenStable();
|
||||
|
||||
defaultProp = queryDom(fixture);
|
||||
exifProp = queryDom(fixture, 'EXIF');
|
||||
|
@@ -188,7 +188,7 @@ describe('DropdownSitesComponent', () => {
|
||||
fixture.detectChanges();
|
||||
await fixture.whenStable();
|
||||
|
||||
let options = debug.queryAll(By.css('mat-option'));
|
||||
const options = debug.queryAll(By.css('mat-option'));
|
||||
options[0].triggerEventHandler('click', null);
|
||||
|
||||
fixture.detectChanges();
|
||||
|
Reference in New Issue
Block a user