Closed austinkelleher closed 6 years ago
Example:
module.exports = function(markoCli) { markoCli.config.mochaOptions = { colors: true // Boolean value }; };
Results in the following generated args:
[ '/app/node_modules/@marko/test/util/server-tests-runner/mocha-tests-server.js', '--colors', true]
[ '/app/node_modules/@marko/test/util/server-tests-runner/mocha-tests-server.js', '--colors']
module.exports = function(markoCli) { markoCli.config.mochaOptions = { colors: false // Boolean value }; };
[ '/app/node_modules/@marko/test/util/server-tests-runner/mocha-tests-server.js']
Bug Report
Example:
Current Result
Results in the following generated args:
Expected Result
Example:
Current Result
Results in the following generated args:
Expected Result