Code coverage report for src/helpers/window.coffee

Statements: 33.33% (1 / 3)      Branches: 0% (0 / 2)      Functions: 0% (0 / 1)      Lines: 33.33% (1 / 3)      Ignored: none     

All files » src/helpers/ » window.coffee
1 2 3 4 5 6 7 8 9                
module.exports = {
  replaceBrowserLocation: function(url) {
    if (!window.__karma__) {
      return window.location.replace(url);
    }
  }
};