arc_dx
Version:
A platform for building DAOs
14 lines (10 loc) • 480 B
JavaScript
const DaoCreator = artifacts.require('./DaoCreator.sol');
const ContributionReward = artifacts.require('./ContributionReward.sol');
contract('Migrations', async function() {
it('should have deployed entire DAOStack', async function() {
// 'deployed()' will throw an error if the contract is not found
// we test the first and last contract deployed in migrations
await DaoCreator.deployed();
await ContributionReward.deployed();
});
});