Add contract test linting

This commit is contained in:
2019-04-24 19:56:37 +02:00
parent 6f2097ed46
commit c9fed46054
8 changed files with 35 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
const Contributor = artifacts.require('Contributor.sol')
// const Contributor = artifacts.require('Contributor.sol');
contract('Contributor', (accounts) => {
it('should be tested')
})
contract('Contributor', (_accounts) => {
it('should be tested');
});