adamgruber/mochawesome

View on GitHub

Showing 13 of 16 total issues

Function Mochawesome has 98 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function Mochawesome(runner, options) {
  // Set the config options
  this.config = conf(options);

  // Ensure stats collector has been initialized
Severity: Major
Found in src/mochawesome.js - About 3 hrs to fix

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

    function stripFunctionStart(input) {
      const BEGIN = 1;
      const LBRACE = 2;
      const EQ = 4;
      const ARROW = 8;
    Severity: Minor
    Found in src/stripFnStart.js - About 2 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 stripFunctionStart has 45 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function stripFunctionStart(input) {
      const BEGIN = 1;
      const LBRACE = 2;
      const EQ = 4;
      const ARROW = 8;
    Severity: Minor
    Found in src/stripFnStart.js - About 1 hr to fix

      Function cleanSuite has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function cleanSuite(suite, testTotals, config) {
        let duration = 0;
        const passingTests = [];
        const failingTests = [];
        const pendingTests = [];
      Severity: Minor
      Found in src/utils.js - About 1 hr to fix

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

        function cleanSuite(suite, testTotals, config) {
          let duration = 0;
          const passingTests = [];
          const failingTests = [];
          const pendingTests = [];
        Severity: Minor
        Found in src/utils.js - About 1 hr 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 normalizeErr has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function normalizeErr(err, config) {
          const { name, message, actual, expected, stack, showDiff } = err;
          let errMessage;
          let errDiff;
        
        
        Severity: Minor
        Found in src/utils.js - About 1 hr to fix

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

          const addContext = function (...args) {
            // Check args to see if we should bother continuing
            if (args.length !== 2 || !isObject(args[0])) {
              log(ERRORS.INVALID_ARGS, 'error');
              return;
          Severity: Minor
          Found in src/addContext.js - About 1 hr to fix

            Function nextState has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              const nextState = (state, c) => {
                switch (state) {
                  case BEGIN:
                    switch (c) {
                      case '{':
            Severity: Minor
            Found in src/stripFnStart.js - About 1 hr to fix

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

              const addContext = function (...args) {
                // Check args to see if we should bother continuing
                if (args.length !== 2 || !isObject(args[0])) {
                  log(ERRORS.INVALID_ARGS, 'error');
                  return;
              Severity: Minor
              Found in src/addContext.js - About 1 hr 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 _getOption has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

              function _getOption(optToGet, options, isBool, defaultValue) {
                const envVar = `MOCHAWESOME_${optToGet.toUpperCase()}`;
                if (options && typeof options[optToGet] !== 'undefined') {
                  return isBool && typeof options[optToGet] === 'string'
                    ? options[optToGet] === 'true'
              Severity: Minor
              Found in src/config.js - About 45 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

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

              function normalizeErr(err, config) {
                const { name, message, actual, expected, stack, showDiff } = err;
                let errMessage;
                let errDiff;
              
              
              Severity: Minor
              Found in src/utils.js - About 45 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

              Function done has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              function done(output, options, config, failures, exit) {
              Severity: Minor
              Found in src/mochawesome.js - About 35 mins to fix

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

                function cleanTest(test, config) {
                  const code = config.code ? test.body || '' : '';
                
                  const fullTitle = isFunction(test.fullTitle)
                    ? stripAnsi(test.fullTitle())
                Severity: Minor
                Found in src/utils.js - About 25 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