angelakuo/citydogshare

View on GitHub
public/assets/jasmine-html-98c5000e0f25c424e19c750090e95592be87545912b6be25fca072ed04f22df1.js

Summary

Maintainability
F
1 wk
Test Coverage

Function HtmlReporter has a Cognitive Complexity of 136 (exceeds 5 allowed). Consider refactoring.
Open

jasmineRequire.HtmlReporter = function(j$) {

  var noopTimer = {
    start: function() {},
    elapsed: function() { return 0; }

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function HtmlReporter has 304 lines of code (exceeds 25 allowed). Consider refactoring.
Open

jasmineRequire.HtmlReporter = function(j$) {

  var noopTimer = {
    start: function() {},
    elapsed: function() { return 0; }

    Function HtmlReporter has 297 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      function HtmlReporter(options) {
        var env = options.env || {},
          getContainer = options.getContainer,
          createElement = options.createElement,
          createTextNode = options.createTextNode,

      Function jasmineDone has 151 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          this.jasmineDone = function(doneResult) {
            var banner = find('.jasmine-banner');
            var alert = find('.jasmine-alert');
            var order = doneResult && doneResult.order;
            alert.appendChild(createDom('span', {className: 'jasmine-duration'}, 'finished in ' + timer.elapsed() / 1000 + 's'));

        File jasmine-html-98c5000e0f25c424e19c750090e95592be87545912b6be25fca072ed04f22df1.js has 378 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        /*
        Copyright (c) 2008-2016 Pivotal Labs
        
        Permission is hereby granted, free of charge, to any person obtaining
        a copy of this software and associated documentation files (the

          Function QueryString has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

          jasmineRequire.QueryString = function() {
            function QueryString(options) {
          
              this.navigateWithNewParam = function(key, value) {
                options.getWindowLocation().search = this.fullStringWithNewParam(key, value);

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function QueryString has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          jasmineRequire.QueryString = function() {
            function QueryString(options) {
          
              this.navigateWithNewParam = function(key, value) {
                options.getWindowLocation().search = this.fullStringWithNewParam(key, value);

            Function QueryString has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              function QueryString(options) {
            
                this.navigateWithNewParam = function(key, value) {
                  options.getWindowLocation().search = this.fullStringWithNewParam(key, value);
                };

              Function specDone has 35 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  this.specDone = function(result) {
                    if(noExpectations(result) && typeof console !== 'undefined' && typeof console.error !== 'undefined') {
                      console.error('Spec \'' + result.fullName + '\' has no expectations.');
                    }
              
              

                Function summaryList has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                      function summaryList(resultsTree, domParent) {
                        var specListNode;
                        for (var i = 0; i < resultsTree.children.length; i++) {
                          var resultNode = resultsTree.children[i];
                          if (resultNode.type == 'suite') {

                  There are no issues that match your filters.

                  Category
                  Status