Skip to content

Commit

Permalink
fix(reporter): Remove double logging
Browse files Browse the repository at this point in the history
Closes #36
  • Loading branch information
dignifiedquire committed Oct 20, 2015
1 parent b0761a2 commit 6ab38f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions examples/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ describe('subtract', function () {
})

describe('updateAppState', function () {
console.log('Hello from my test')

it('should push a new state into the browser history', function () {
window.updateAppState({
message: 'hi'
Expand Down
4 changes: 1 addition & 3 deletions lib/sauce_reporter.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
// SauceLabs is a wrapper around the Sauce Labs REST API
var SauceLabs = require('saucelabs')

var SauceReporter = function (baseReporterDecorator, logger, /* sauce:jobMapping */ jobMapping) {
var SauceReporter = function (logger, /* sauce:jobMapping */ jobMapping) {
var log = logger.create('reporter.sauce')

baseReporterDecorator(this)

var pendingUpdates = 0
var updatesFinished = function () {}

Expand Down

0 comments on commit 6ab38f8

Please sign in to comment.