karma-runner/karma

View on GitHub

Showing 193 of 258 total issues

Function 8 has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

},{}],8:[function(require,module,exports){

/**
 * Module dependencies.
 */
Severity: Minor
Found in static/karma.js - About 6 hrs 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

Function _start has 164 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  async _start (config, launcher, preprocess, fileList, capturedBrowsers, executor, done) {
    if (config.detached) {
      this._detach(config, done)
      return
    }
Severity: Major
Found in lib/server.js - About 6 hrs to fix

    Function 3 has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
    Open

    },{}],3:[function(require,module,exports){
    // Load our dependencies
    var stringify = require('../common/stringify')
    
    // Define our context Karma constructor
    Severity: Minor
    Found in static/context.js - About 5 hrs 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

    File config.js has 407 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    'use strict'
    
    const path = require('path')
    const assert = require('assert')
    
    
    Severity: Minor
    Found in lib/config.js - About 5 hrs to fix

      Function BaseReporter has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

      const BaseReporter = function (formatError, reportSlow, useColors, browserConsoleLogOptions, adapter) {
        this.adapters = [adapter || process.stdout.write.bind(process.stdout)]
      
        this.USE_COLORS = false
        this.EXCLUSIVELY_USE_COLORS = undefined
      Severity: Minor
      Found in lib/reporters/base.js - About 5 hrs 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

      File server.js has 395 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      'use strict'
      
      const SocketIO = require('socket.io')
      const di = require('di')
      const util = require('util')
      Severity: Minor
      Found in lib/server.js - About 5 hrs to fix

        Function createKarmaMiddleware has 137 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function createKarmaMiddleware (
          filesPromise,
          serveStaticFile,
          serveFile,
          injector,
        Severity: Major
        Found in lib/middleware/karma.js - About 5 hrs to fix

          Function 8 has 127 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          },{}],8:[function(require,module,exports){
          
          /**
           * Module dependencies.
           */
          Severity: Major
          Found in static/karma.js - About 5 hrs to fix

            Function 6 has 127 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            },{}],6:[function(require,module,exports){
            
            /**
             * Module dependencies.
             */
            Severity: Major
            Found in static/context.js - About 5 hrs to fix

              Function normalizeConfig has 125 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function normalizeConfig (config, configFilePath) {
                function basePathResolve (relativePath) {
                  if (helper.isUrlAbsolute(relativePath)) {
                    return relativePath
                  } else if (helper.isDefined(config.basePath) && helper.isDefined(relativePath)) {
              Severity: Major
              Found in lib/config.js - About 5 hrs to fix

                Function normalizeConfig has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
                Open

                function normalizeConfig (config, configFilePath) {
                  function basePathResolve (relativePath) {
                    if (helper.isUrlAbsolute(relativePath)) {
                      return relativePath
                    } else if (helper.isDefined(config.basePath) && helper.isDefined(relativePath)) {
                Severity: Minor
                Found in lib/config.js - About 4 hrs 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

                Function processArgs has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
                Open

                function processArgs (argv, options, fs, path) {
                  Object.getOwnPropertyNames(argv).forEach(function (name) {
                    let argumentValue = argv[name]
                    if (name !== '_' && name !== '$0') {
                      if (Array.isArray(argumentValue)) {
                Severity: Minor
                Found in lib/cli.js - About 4 hrs 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

                Function ProcessLauncher has 120 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function ProcessLauncher (spawn, tempDir, timer, processKillTimeout) {
                  const self = this
                  let onExitCallback
                  const killTimeout = processKillTimeout || 2000
                  // Will hold output from the spawned child process
                Severity: Major
                Found in lib/launchers/process.js - About 4 hrs to fix

                  Function parseConfig has 115 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function parseConfig (configFilePath, cliOptions, parseOptions) {
                    const promiseConfig = parseOptions && parseOptions.promiseConfig === true
                    const throwErrors = parseOptions && parseOptions.throwErrors === true
                    const shouldSetupLoggerEarly = promiseConfig
                    if (shouldSetupLoggerEarly) {
                  Severity: Major
                  Found in lib/config.js - About 4 hrs to fix

                    Function 3 has 114 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    },{}],3:[function(require,module,exports){
                    // Load our dependencies
                    var stringify = require('../common/stringify')
                    
                    // Define our context Karma constructor
                    Severity: Major
                    Found in static/context.js - About 4 hrs to fix

                      Function BaseReporter has 110 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      const BaseReporter = function (formatError, reportSlow, useColors, browserConsoleLogOptions, adapter) {
                        this.adapters = [adapter || process.stdout.write.bind(process.stdout)]
                      
                        this.USE_COLORS = false
                        this.EXCLUSIVELY_USE_COLORS = undefined
                      Severity: Major
                      Found in lib/reporters/base.js - About 4 hrs to fix

                        Function ContextKarma has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
                        Open

                        function ContextKarma (callParentKarmaMethod) {
                          // Define local variables
                          var hasError = false
                          var self = this
                          var isLoaded = false
                        Severity: Minor
                        Found in context/karma.js - About 4 hrs 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

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

                        },{"./karma":3}],5:[function(require,module,exports){
                        (function (global){
                        
                        var NativeCustomEvent = global.CustomEvent;
                        
                        
                        Severity: Minor
                        Found in static/context.js - About 3 hrs 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

                        Function ContextKarma has 96 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function ContextKarma (callParentKarmaMethod) {
                          // Define local variables
                          var hasError = false
                          var self = this
                          var isLoaded = false
                        Severity: Major
                        Found in context/karma.js - About 3 hrs to fix

                          Function ContextKarma has 96 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          function ContextKarma (callParentKarmaMethod) {
                            // Define local variables
                            var hasError = false
                            var self = this
                            var isLoaded = false
                          Severity: Major
                          Found in static/context.js - About 3 hrs to fix
                            Severity
                            Category
                            Status
                            Source
                            Language