mirror of https://github.com/embarklabs/embark.git
fix(@embark/mocha): reset contracts before each test file
Caused issues because we kept in memory the old contracts, including the onDeploys.
This commit is contained in:
parent
1278365768
commit
deb682c9d2
|
@ -114,6 +114,10 @@ class MochaTestRunner {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
(next) => {
|
(next) => {
|
||||||
|
// Reset contract config to make sure we don't deploy old contracts or worse, call old onDeploys
|
||||||
|
events.request("contracts:reset", next);
|
||||||
|
},
|
||||||
|
(next) => {
|
||||||
// Remove contracts that are not in the configs
|
// Remove contracts that are not in the configs
|
||||||
const realContracts = {};
|
const realContracts = {};
|
||||||
const deployKeys = Object.keys(cfg.contracts.deploy);
|
const deployKeys = Object.keys(cfg.contracts.deploy);
|
||||||
|
|
Loading…
Reference in New Issue