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.
19 lines
452 B
19 lines
452 B
5 years ago
|
|
||
|
// Mute compiler warnings - this will need to be addressed properly in
|
||
|
// the Buidler plugin by overloading TASK_COMPILE_COMPILE.
|
||
|
const originalLog = console.log;
|
||
|
console.warn = () => {};
|
||
|
console.log = val => val === '\n' ? null : originalLog(val);
|
||
|
|
||
|
module.exports = {
|
||
|
solc: {
|
||
|
version: "0.5.8"
|
||
|
},
|
||
|
paths: {
|
||
|
artifacts: "./test/artifacts",
|
||
|
cache: "./test/cache",
|
||
|
test: "./test/units",
|
||
|
sources: "./test/sources/contracts",
|
||
|
}
|
||
|
}
|