small cleanups

This commit is contained in:
Jonathan Rainville 2018-07-25 16:12:17 -04:00 committed by Pascal Precht
parent 5a842c9b70
commit e95efbfc54
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
2 changed files with 8 additions and 12 deletions

View File

@ -153,6 +153,8 @@ __embarkENS.setProvider = function (config) {
self.registration = config.registration;
self.env = config.env;
EmbarkJS.onReady(() => {
self.registration = config.registration;
web3.eth.net.getId()
.then((id) => {
const registryAddress = self.registryAddresses[id] || config.registryAddress;

View File

@ -18,27 +18,21 @@ config({
"onDeploy": [
`ENSRegistry.methods.setOwner('${rootNode}', web3.eth.defaultAccount).send().then(() => {
ENSRegistry.methods.setResolver('${rootNode}', "$Resolver").send();
Resolver.methods.setAddr('${rootNode}', '${address}').send().then(() => {
global.ensTestReady = true;
});
});`
Resolver.methods.setAddr('${rootNode}', '${address}').send();
})`
]
}
}
});
contract("ENS", function () {
this.timeout(1000);
this.timeout(0);
before(function (done) {
// Wait for onDeploy to finish
const wait = setInterval(() => {
if (!global.ensTestReady) {
return;
}
clearInterval(wait);
setTimeout(function () {
done();
}, 50);
}, 500);
});
it("should have registered embark.eth", async function () {