You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,8 @@ A working example can be found at [openzeppelin-contracts, here.][35]
99
99
| solcoverjs |`--solcoverjs ./../.solcover.js`| Relative path from working directory to config. Useful for monorepo packages that share settings. (Path must be "./" prefixed) |
100
100
| network |`--network development`| Use network settings defined in the Truffle or Buidler config |
101
101
| temp[<sup>*</sup>][14]|`--temp build`|:warning:**Caution**:warning: Path to a *disposable* folder to store compilation artifacts in. Useful when your test setup scripts include hard-coded paths to a build directory. [More...][14]|
102
+
| matrix | `--matrix` | Generate a JSON object that maps which mocha tests hit which lines of code. (Useful
103
+
as an input for some fuzzing, mutation testing and fault-localization algorithms.) [More...][38]|
102
104
103
105
[<sup>*</sup> Advanced use][14]
104
106
@@ -123,6 +125,7 @@ module.exports = {
123
125
| measureStatementCoverage |*boolean*|`true`| Computes statement (in addition to line) coverage. [More...][34]|
124
126
| measureFunctionCoverage |*boolean*|`true`| Computes function coverage. [More...][34]|
125
127
| measureModifierCoverage |*boolean*|`true`| Computes each modifier invocation as a code branch. [More...][34]|
128
+
| matrixOutputPath |*String*|`./testMatrix.json`| Relative path to write test matrix JSON object to. [More...][38]|
126
129
| istanbulFolder |*String*|`./coverage`| Folder location for Istanbul coverage reports. |
| mocha |*Object*|`{ }`|[Mocha options][3] to merge into existing mocha config. `grep` and `invert` are useful for skipping certain tests under coverage using tags in the test descriptions.|
0 commit comments