Skip to content

Commit

Permalink
Merge pull request #1185 from rlivsey/fix-cycle-depth
Browse files Browse the repository at this point in the history
Fix TestemConfig always being reset to {}
  • Loading branch information
johanneswuerbach committed Oct 23, 2017
2 parents bdc9377 + d46d01d commit bd9a1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/testem/testem_client.js
Expand Up @@ -119,7 +119,7 @@ function Message(socket, emitArgs) {
}

// eslint-disable-next-line no-use-before-define
if (typeof TestemConfig === 'undefined' || {}) {
if (typeof TestemConfig === 'undefined') {
var TestemConfig = {};
}

Expand Down

0 comments on commit bd9a1b1

Please sign in to comment.