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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -