appnexus/gulp-wimp

View on GitHub

Showing 5 of 5 total issues

Function seleniumStartCallback has 146 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function seleniumStartCallback (options, parentStream){
  return function (er, selenium) {
    if (er) {
      // attempt to kill process
      console.log("Error starting selenium", er);
Severity: Major
Found in index.js - About 5 hrs to fix

    Function Driver has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function Driver (opts) {
      if (!opts) { opts = {}; }
      var self = this;
      
      EventEmitter.call(this);
    Severity: Minor
    Found in driver.js - About 1 hr to fix

      Function killSelenium has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function killSelenium () {
            debug('killing selenium');
            selenium.kill();
            var failed = false;
            var numberFailedAfterRetry = 0;
      Severity: Minor
      Found in index.js - About 1 hr to fix

        Function onfinishCallback has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function onfinishCallback () {
                debug('all tests have finished.');
                // time drain was triggered
                var drainTime = Date.now();
                // check for hanging forks
        Severity: Minor
        Found in index.js - About 1 hr to fix

          Function Driver has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          function Driver (opts) {
            if (!opts) { opts = {}; }
            var self = this;
            
            EventEmitter.call(this);
          Severity: Minor
          Found in driver.js - About 55 mins to fix

          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

          Severity
          Category
          Status
          Source
          Language