mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
exclude one test and do some fixes (#1869)
* exclude one test and do some fixes * try to get more logs * some more fixes * try to workaround the slow update of toggle menus * more logging * no message * trigger another run * Update delete-undo-delete.test.ts * no message * rename methods * no message * no message * no message * no message * no message * no message * update travis.yml * run travis on branch * trigger travis * cleanup * no message
This commit is contained in:
@@ -61,14 +61,18 @@ export class CreateFromTemplateDialog extends GenericDialog {
|
||||
}
|
||||
}
|
||||
|
||||
async getName(): Promise<string> {
|
||||
async getNameInputValue(): Promise<string> {
|
||||
return BrowserActions.getInputValue(this.nameInput);
|
||||
}
|
||||
|
||||
async getDescription(): Promise<string> {
|
||||
async getDescriptionValue(): Promise<string> {
|
||||
return BrowserActions.getInputValue(this.descriptionTextArea);
|
||||
}
|
||||
|
||||
async getTitleInputValue(): Promise<string> {
|
||||
return BrowserActions.getInputValue(this.titleInput);
|
||||
}
|
||||
|
||||
async enterName(name: string): Promise<void> {
|
||||
await typeText(this.nameInput, name);
|
||||
}
|
||||
|
Reference in New Issue
Block a user