refactor token tests

This commit is contained in:
haythem 2019-04-20 14:44:42 +01:00
parent 5368a3d7d8
commit a95e1ec027
3 changed files with 3 additions and 6 deletions

View File

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

View File

@ -7,7 +7,7 @@ const { assertRevert } = require('@aragon/test-helpers/assertThrow');
const ZERO_ADDR = '0x0000000000000000000000000000000000000000';
contract('Coin app', (accounts) => {
contract('Token app', (accounts) => {
let kernelBase, aclBase, daoFactory, dao, acl, token;
const root = accounts[0];

View File

@ -21,6 +21,8 @@
"devchain": "aragon devchain --port 7545",
"dao:address": "truffle exec scripts/current-address.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:token": "cd apps/token && aragon contracts test --environment default",
"test:contributor": "cd apps/contributor && aragon contracts test --environment default",
"test:kit": "aragon contracts test --environment default"
},
"repository": {