mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Fixed condition for TestConfig file (#4536)
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
import { browser, protractor } from 'protractor';
|
||||
|
||||
const until = protractor.ExpectedConditions;
|
||||
const DEFAULT_TIMEOUT = global['TestConfig'].main.timeout || 40000;
|
||||
const DEFAULT_TIMEOUT = global['TestConfig'] ? global['TestConfig'].main.timeout : 40000;
|
||||
|
||||
export class BrowserVisibility {
|
||||
|
||||
|
Reference in New Issue
Block a user