michaelleeallen / mocha-junit-reporter

A JUnit XML reporter for mocha.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Outdated Documentation

swarnadeepsaha opened this issue · comments

var mocha = new Mocha({
    reporter: 'mocha-junit-reporter',
    reporterOptions: {
        mochaFile: './path_to_your/file.xml'
    }
});
reporterOptions: {
        mochaFile: './path_to_your/file.xml'
    }

doesn't work instead, it should be

reporterOptions: [
        'mochaFile=./path_to_your/file.xml'
    ]