Giter Site home page Giter Site logo

tap-mochawesome-reporter's People

Contributors

darvin avatar

Watchers

 avatar  avatar

tap-mochawesome-reporter's Issues

Is this maintained?

Hi there,

This is a great idea and I really like the mochawesome reporter and I can't find any other html reporters for tap.

I am finding one issue where I think the syntax the plugin creates is not the same as what marge is expecting.

If you use the library directly you will run into an issue:

 'expected':diag.data ? (diag.data.expected || diag.data.expect )  : (diag.expected || diag.data.expect),
                                                                                                      
TypeError: Cannot read property 'expect' of undefined

@tap-mochawesome-reporter/index.js:75:10

I fixed this by npm linking it and updating the formatError function:

function formatError (diag){
    if (diag && diag.data) return {
        'name':"",
        'message':"",
        "showDiff": true,
        'actual':diag.data ? (diag.data.got || diag.data.actual)  : (diag.got  || diag.actual),
        'expected':diag.data ? (diag.data.expected || diag.data.expect )  : (diag.expected || diag.data.expect),
    }
    return {};
}

Beyond this marge 4.0.1 reports an error:

supplied to /suites: Nil
  Invalid value 2019 supplied to /copyrightYear: Nil

I assume the JSON syntax for MA changed since this was made. Hence the original question!

Would appreciate your input and if I can solve it I will submit a PR.

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.