You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
611 B
18 lines
611 B
4 years ago
|
// Testing hooks
|
||
|
const fn = (msg, config) => config.logger.log(msg);
|
||
|
const reporterPath = (process.env.TRUFFLE_TEST)
|
||
|
? "./plugins/resources/matrix.js"
|
||
|
: "../plugins/resources/matrix.js";
|
||
|
|
||
|
module.exports = {
|
||
|
// This is loaded directly from `./plugins` during unit tests. The default val is
|
||
|
// "solidity-coverage/plugins/resources/matrix.js"
|
||
|
matrixReporterPath: reporterPath,
|
||
|
matrixOutputPath: "alternateTestMatrix.json",
|
||
4 years ago
|
mochaJsonOutputPath: "alternateMochaOutput.json",
|
||
4 years ago
|
|
||
|
skipFiles: ['Migrations.sol'],
|
||
|
silent: process.env.SILENT ? true : false,
|
||
|
istanbulReporter: ['json-summary', 'text'],
|
||
|
}
|