wdio-summary-reporter
Advanced tools
Comparing version 0.0.6 to 0.0.7
{ | ||
"name": "wdio-summary-reporter", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "src/reporter/reporter.js", |
@@ -11,7 +11,18 @@ const events = require('events'); | ||
this.options = options; | ||
this.on('runner:start', function (runner) { | ||
console.log('Runner:', runner.specs); | ||
}); | ||
this.on('suite:start', function (suite) { }); | ||
this.on('test:pending', function (test) { | ||
console.log('Cid is', test.cid); | ||
}); | ||
this.on('test:pass', function (test) { | ||
console.log(test); | ||
}); | ||
this.on('runner:end', function (runner) { | ||
console.log('¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢¢', JSON.stringify(runner)); | ||
console.log('\n#################', JSON.stringify(this.baseReporter)); | ||
}); | ||
@@ -18,0 +29,0 @@ |
1449
22