Deploy mock contracts on test

pull/43/head
Makoto Inoue 8 years ago
parent e033d802ff
commit 949f25b244
  1. 3
      migrations/2_deploy_contracts.js

@ -4,9 +4,10 @@ module.exports = function(deployer) {
deployer.deploy(ProofOfExistence);
deployer.deploy(Ownable);
deployer.deploy(LimitFunds);
if(deployer.network == 'test'){
deployer.deploy(SecureTargetMock);
deployer.deploy(SecureTargetFactory);
deployer.deploy(InsecureTargetMock);
deployer.deploy(InsecureTargetFactory);
};
};

Loading…
Cancel
Save