Move timeout setting out one level from bdd.before to bdd.describe.

This commit is contained in:
LeeDr 2015-11-20 13:34:13 -06:00
parent 5f10d16f4d
commit 0d0628e5bd

View file

@ -13,13 +13,13 @@ define(function (require) {
var scenarioManager;
var remote;
var scenarioManager = new ScenarioManager(url.format(config.servers.elasticsearch));
this.timeout = 120000;
// on setup, we create an settingsPage instance
// that we will use for all the tests
bdd.before(function () {
common = new Common(this.remote);
remote = this.remote;
this.timeout = 120000;
});
bdd.after(function unloadMakelogs() {