mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
add debug method to common
add debug setting to intern config, don't output debug messages by default
This commit is contained in:
parent
cbcc34ee80
commit
d42f54b5d3
2 changed files with 13 additions and 7 deletions
|
@ -3,6 +3,7 @@ define(function (require) {
|
|||
var _ = require('intern/dojo/node!lodash');
|
||||
|
||||
return _.assign({
|
||||
debug: false,
|
||||
capabilities: {
|
||||
'selenium-version': '2.47.1',
|
||||
'idle-timeout': 30
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
// in test/support/pages/Common.js
|
||||
define(function (require) {
|
||||
var config = require('intern').config;
|
||||
var Promise = require('bluebird');
|
||||
var moment = require('moment');
|
||||
var fs = require('intern/dojo/node!fs');
|
||||
|
@ -27,12 +28,12 @@ define(function (require) {
|
|||
return Promise
|
||||
.try(block)
|
||||
.then(function tryForTimeSuccess() {
|
||||
self.log('tryForTime success in about ' + (lastTry - start) + ' milliseconds');
|
||||
self.debug('tryForTime success in about ' + (lastTry - start) + ' milliseconds');
|
||||
return (lastTry - start);
|
||||
})
|
||||
.catch(function tryForTimeCatch(err) {
|
||||
self.log('failed with "' + err.message + '"');
|
||||
self.log('trying again in 1/2 second');
|
||||
self.debug('failed with "' + err.message + '"');
|
||||
self.debug('trying again in 1/2 second');
|
||||
return Promise.delay(500).then(attempt);
|
||||
});
|
||||
}
|
||||
|
@ -44,12 +45,16 @@ define(function (require) {
|
|||
console.log(moment().format('HH:mm:ss.SSS') + ': ' + logString);
|
||||
},
|
||||
|
||||
debug: function debug(logString) {
|
||||
if (config.debug) this.log(logString);
|
||||
},
|
||||
|
||||
sleep: function sleep(sleepMilliseconds) {
|
||||
var log = this.log;
|
||||
log('... sleep(' + sleepMilliseconds + ') start');
|
||||
var debug = this.debug;
|
||||
debug('... sleep(' + sleepMilliseconds + ') start');
|
||||
|
||||
return Promise.resolve().delay(sleepMilliseconds)
|
||||
.then(function () { log('... sleep(' + sleepMilliseconds + ') end'); });
|
||||
.then(function () { debug('... sleep(' + sleepMilliseconds + ') end'); });
|
||||
},
|
||||
|
||||
handleError: function (testObj) {
|
||||
|
@ -68,7 +73,7 @@ define(function (require) {
|
|||
},
|
||||
|
||||
saveScreenshot: function saveScreenshot(filename) {
|
||||
this.log('Test Failed, taking screenshot "' + filename + '"');
|
||||
this.debug('Test Failed, taking screenshot "' + filename + '"');
|
||||
|
||||
return this.remote.takeScreenshot()
|
||||
.then(function writeScreenshot(data) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue