MOBILE-3294: Expose cronProvider and appRef to Behat tests
parent
f9f342687b
commit
3e067a5600
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import { Injectable, NgZone } from '@angular/core';
|
import { Injectable, NgZone, ApplicationRef } from '@angular/core';
|
||||||
import { Platform, App, NavController, MenuController } from 'ionic-angular';
|
import { Platform, App, NavController, MenuController } from 'ionic-angular';
|
||||||
import { Keyboard } from '@ionic-native/keyboard';
|
import { Keyboard } from '@ionic-native/keyboard';
|
||||||
import { Network } from '@ionic-native/network';
|
import { Network } from '@ionic-native/network';
|
||||||
|
@ -168,9 +168,18 @@ export class CoreAppProvider {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(dbProvider: CoreDbProvider, private platform: Platform, private keyboard: Keyboard, private appCtrl: App,
|
constructor(dbProvider: CoreDbProvider,
|
||||||
private network: Network, logger: CoreLoggerProvider, private events: CoreEventsProvider, zone: NgZone,
|
private platform: Platform,
|
||||||
private menuCtrl: MenuController, private statusBar: StatusBar) {
|
private keyboard: Keyboard,
|
||||||
|
private appCtrl: App,
|
||||||
|
private network: Network,
|
||||||
|
logger: CoreLoggerProvider,
|
||||||
|
private events: CoreEventsProvider,
|
||||||
|
zone: NgZone,
|
||||||
|
private menuCtrl: MenuController,
|
||||||
|
private statusBar: StatusBar,
|
||||||
|
appRef: ApplicationRef) {
|
||||||
|
|
||||||
this.logger = logger.getInstance('CoreAppProvider');
|
this.logger = logger.getInstance('CoreAppProvider');
|
||||||
this.db = dbProvider.getDB(this.DBNAME);
|
this.db = dbProvider.getDB(this.DBNAME);
|
||||||
|
|
||||||
|
@ -214,9 +223,10 @@ export class CoreAppProvider {
|
||||||
this.backButtonAction();
|
this.backButtonAction();
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
||||||
// Export the app provider so Behat tests can change the forceOffline flag.
|
// Export the app provider and appRef to control the application in Behat tests.
|
||||||
if (CoreAppProvider.isAutomated()) {
|
if (CoreAppProvider.isAutomated()) {
|
||||||
(<any> window).appProvider = this;
|
(<any> window).appProvider = this;
|
||||||
|
(<any> window).appRef = appRef;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -136,6 +136,11 @@ export class CoreCronDelegate {
|
||||||
this.startNetworkHandlers();
|
this.startNetworkHandlers();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Export the sync provider so Behat tests can trigger cron tasks without waiting.
|
||||||
|
if (CoreAppProvider.isAutomated()) {
|
||||||
|
(<any> window).cronProvider = this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue