We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa1d912 commit d1d3bbcCopy full SHA for d1d3bbc
package.json
@@ -4,7 +4,8 @@
4
"description": "",
5
"main": "index.js",
6
"scripts": {
7
- "run": "truffle run syntest-solidity"
+ "run": "truffle run syntest-solidity",
8
+ "coverage": "truffle run coverage"
9
},
10
"homepage": "https://github.com/syntest-framework/syntest-solidity-benchmark",
11
"repository": {
@@ -14,6 +15,7 @@
14
15
"author": "",
16
"license": "MIT",
17
"dependencies": {
18
+ "solidity-coverage": "^0.7.16",
19
"syntest-solidity": "file:../syntest-solidity"
20
21
"devDependencies": {}
truffle-config.js
@@ -17,7 +17,6 @@ module.exports = {
// network_id: "*"
// }
// },
- //
-
22
- plugins: ["syntest-solidity"]
+ test_directory: "syntest/tests",
+ plugins: ["syntest-solidity", "solidity-coverage"]
23
};
0 commit comments