Increase 5s timeout to longTimeout of 60s.

This commit is contained in:
LeeDr 2015-11-23 16:13:34 -06:00 committed by Joe Fleming
parent 48dc50e32c
commit 5a2eb04a37

View file

@ -9,6 +9,7 @@ define(function (require) {
var common;
var settingsPage;
var remote;
var longTimeout = 60000;
bdd.before(function () {
common = new Common(this.remote);
@ -93,7 +94,7 @@ define(function (require) {
});
bdd.it('makelogs data should have expected number of fields', function () {
return common.tryForTime(5000, function () {
return common.tryForTime(longTimeout, function () {
return settingsPage.getFieldsTabCount()
.then(function (tabCount) {
expect(tabCount).to.be('' + expectedFieldCount);