javascript - Cannot read property 'runResult' of undefined in stryker testing framework -
i trying use javascript testing framework stryker. when stryker run gives error. cannot read property 'runresult' of undefined at: g:\stryker test\node_modules\stryker-mocha-runner.js:30:40
below stryker.conf.js-
module.exports = function(config){ config.set( { "files": [ { "pattern": "src/**/*.js", "mutated": true, "included": false }, "test/**/*.js" ], "testrunner": "mocha", "reporter": [ "clear-text", "progress" ], "testframework": "mocha", "coverageanalysis": "pertest" } ); }
my file structure follows
.stryker-tmp node-modules src index.js test index.js package.json stryker.conf.js
Comments
Post a Comment