embark/dapps/tests/app/config/namesystem.js
Jonathan Rainville 63ab21ee81 feat(@embark/test-runner): make modules configurable per test
Make storage, ens and communication configurable per test
Tested ENS and it works like a charm
2019-07-12 12:44:53 -04:00

18 lines
357 B
JavaScript

module.exports = {
"default": {
"enabled": true,
"available_providers": ["ens"],
"provider": "ens"
},
development: {
"register": {
"rootDomain": "embark.eth",
"subdomains": {
"status": "0x4a17f35f0a9927fb4141aa91cbbc72c1b31598de",
"mytoken": "$MyToken",
"MyToken2": "$MyToken2"
}
}
}
};