mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-2199] fix Upload New Version action availability (#959)
* fix Upload New Version action availability * update unit tests * remove workaround * add catch for tests failing on Bamboo * add new line
This commit is contained in:
committed by
Cilibiu Bogdan
parent
2fd0ff3825
commit
9ceefff5e6
@@ -54,7 +54,11 @@ export class Viewer extends Component {
|
||||
}
|
||||
|
||||
async waitForViewerToOpen() {
|
||||
await browser.wait(EC.presenceOf(this.viewerContainer), BROWSER_WAIT_TIMEOUT);
|
||||
try {
|
||||
await browser.wait(EC.presenceOf(this.viewerContainer), BROWSER_WAIT_TIMEOUT);
|
||||
} catch (error) {
|
||||
console.log('\n-----> catch waitForViewerToOpen <-----\n', error)
|
||||
}
|
||||
}
|
||||
|
||||
async isViewerOpened() {
|
||||
|
Reference in New Issue
Block a user