mirror of https://github.com/embarklabs/embark.git
feat(@embark/test-runner): return accounts in the describe callback
This commit is contained in:
parent
8c16541019
commit
332229ff9d
|
@ -26,7 +26,7 @@ config({
|
|||
accounts = theAccounts;
|
||||
});
|
||||
|
||||
contract("AnotherStorage", function() {
|
||||
contract("AnotherStorage", function(accountsAgain) {
|
||||
const defaultAccount = accounts[0];
|
||||
this.timeout(0);
|
||||
|
||||
|
@ -34,6 +34,10 @@ contract("AnotherStorage", function() {
|
|||
assert.strictEqual(defaultAccount, accounts[0]);
|
||||
});
|
||||
|
||||
it("should have the accounts in the describe callback too", function () {
|
||||
assert.deepStrictEqual(accountsAgain, accounts);
|
||||
});
|
||||
|
||||
it("should have account with balance", async function() {
|
||||
let balance = await web3.eth.getBalance(accounts[0]);
|
||||
assert.ok(parseInt(balance, 10) > 4900000000000000000);
|
||||
|
|
|
@ -225,13 +225,9 @@ class TestRunner {
|
|||
if (global.embark.needConfig) {
|
||||
global.config({});
|
||||
}
|
||||
global.embark.onReady(() => {
|
||||
// Next tick makes sure to not have a hang when tests don't use `config()`
|
||||
// I think this is needed because Mocha expects global.run() to be called ina further event loop
|
||||
process.nextTick(() => {
|
||||
self.ogMochaDescribe(describeName, callback);
|
||||
global.run(); // This tells mocha that it can run the test (used in conjunction with `delay()`
|
||||
});
|
||||
global.embark.onReady((_err, accounts) => {
|
||||
self.ogMochaDescribe(describeName, callback.bind(mocha, accounts));
|
||||
global.run(); // This tells mocha that it can run the test (used in conjunction with `delay()`
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@ class Test {
|
|||
this.accounts = [];
|
||||
this.embarkjs = {};
|
||||
this.dappPath = options.dappPath;
|
||||
this.accounts = [];
|
||||
|
||||
this.events.setCommandHandler("blockchain:provider:contract:accounts:get", cb => {
|
||||
this.events.request("blockchain:getAccounts", cb);
|
||||
|
@ -112,10 +113,14 @@ class Test {
|
|||
onReady(callback) {
|
||||
const self = this;
|
||||
if (this.ready) {
|
||||
return callback();
|
||||
return setImmediate(() => {
|
||||
callback(null, this.accounts);
|
||||
});
|
||||
}
|
||||
if (this.error) {
|
||||
return callback(this.error);
|
||||
return setImmediate(() => {
|
||||
callback(this.error);
|
||||
});
|
||||
}
|
||||
|
||||
let errorCallback, readyCallback;
|
||||
|
@ -125,9 +130,9 @@ class Test {
|
|||
callback(err);
|
||||
};
|
||||
|
||||
readyCallback = () => {
|
||||
readyCallback = (accounts) => {
|
||||
self.events.removeListener('tests:deployError', errorCallback);
|
||||
callback();
|
||||
callback(null, accounts);
|
||||
};
|
||||
|
||||
this.events.once('tests:ready', readyCallback);
|
||||
|
@ -250,8 +255,9 @@ class Test {
|
|||
// TODO Do not exit in case of not a normal run (eg after a change)
|
||||
if (!self.options.inProcess) process.exit(1);
|
||||
}
|
||||
self.accounts = accounts;
|
||||
callback(null, accounts);
|
||||
self.events.emit('tests:ready');
|
||||
self.events.emit('tests:ready', accounts);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue