mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[AAE-726] Add new return await rule (#5203)
* add new return await rule * update tslint * add lint exception
This commit is contained in:
committed by
Denys Vuika
parent
a4730cd9cf
commit
2e046945c7
@@ -138,7 +138,7 @@ export class DataTablePage {
|
||||
}
|
||||
|
||||
async getCopyContentTooltip(): Promise<string> {
|
||||
return await this.dataTable.getCopyContentTooltip();
|
||||
return this.dataTable.getCopyContentTooltip();
|
||||
}
|
||||
|
||||
async mouseOverNameColumn(name: string): Promise<void> {
|
||||
@@ -191,6 +191,6 @@ export class DataTablePage {
|
||||
|
||||
async getClipboardInputText(): Promise<string> {
|
||||
await BrowserVisibility.waitUntilElementIsVisible(this.pasteClipboardInput);
|
||||
return await this.pasteClipboardInput.getAttribute('value');
|
||||
return this.pasteClipboardInput.getAttribute('value');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user