ERC20Mintable.test.js 371 B

12345678910
  1. const { shouldBehaveLikeERC20Mintable } = require('./ERC20Mintable.behavior');
  2. const ERC20Mintable = artifacts.require('ERC20Mintable');
  3. contract('ERC20Mintable', function ([_, owner, ...otherAccounts]) {
  4. beforeEach(async function () {
  5. this.token = await ERC20Mintable.new({ from: owner });
  6. });
  7. shouldBehaveLikeERC20Mintable(owner, owner, otherAccounts);
  8. });