Partial steps to check for UTC timezone before visualize tests.

This commit is contained in:
LeeDr 2015-12-04 15:02:17 -06:00
commit 562a33c781
2 changed files with 5 additions and 14 deletions

View file

@ -1,8 +1,9 @@
module.exports = function (grunt) {
grunt.registerTask('travis', 'Travis CI build script', [
'test:browser',
'test:server'
'eslint:source',
'test:server',
'test:browser'
]);
};

View file

@ -39,19 +39,9 @@ define(function (require) {
bdd.before(function () {
var self = this;
remote.setWindowSize(1200,800);
remote.setTimeout('script', 5 * 60 * 1000);
remote.setTimeout('implicit', 5 * 60 * 1000);
remote.setTimeout('page load', 5 * 60 * 1000);
remote.getTimeout('page load') //One of 'script', 'implicit', or 'page load'. (ms)
.then(function (timeout) { // defaults 0, 0, Infinity
common.debug(timeout);
})
.then(function () {
// load a set of makelogs data
common.debug('loadIfEmpty logstashFunctional ' + self.timeout);
return scenarioManager.loadIfEmpty('logstashFunctional');
});
common.debug('loadIfEmpty logstashFunctional ' + self.timeout);
return scenarioManager.loadIfEmpty('logstashFunctional');
});