Updated dist files.
This commit is contained in:
parent
35b64b9a65
commit
18fdb96fe1
|
@ -3,10 +3,10 @@ Changelog
|
|||
|
||||
This change log is managed by `scripts/cmds/update-versions` but may be manually updated.
|
||||
|
||||
ethers/v5.0.10 (2020-09-04 02:11)
|
||||
ethers/v5.0.10 (2020-09-04 03:20)
|
||||
---------------------------------
|
||||
|
||||
- Added retry logic to provider tests. ([0558bba](https://github.com/ethers-io/ethers.js/commit/0558bba8eb1b783ef50bb37bcf4c9bae1f86f1e1))
|
||||
- Added retry logic to provider tests. ([0558bba](https://github.com/ethers-io/ethers.js/commit/0558bba8eb1b783ef50bb37bcf4c9bae1f86f1e1), [35b64b9](https://github.com/ethers-io/ethers.js/commit/35b64b9a65e2c09ecb63b0eca712b45a3092c204))
|
||||
- Fixed link in docs. ([#1028](https://github.com/ethers-io/ethers.js/issues/1028); [2359a98](https://github.com/ethers-io/ethers.js/commit/2359a98641d99b26cf88ec892e3601a8a2c81c9c))
|
||||
- Added memory-like support and new opcodes to asm. ([6fd3bb6](https://github.com/ethers-io/ethers.js/commit/6fd3bb62d10eab1563dc4ddbd88732b4f484ec7a))
|
||||
- Added basic ENS resolver functions for contenthash, text and multi-coin addresses. ([#1003](https://github.com/ethers-io/ethers.js/issues/1003); [83db8a6](https://github.com/ethers-io/ethers.js/commit/83db8a6bd1364458dcfeea544de707df41890b4e))
|
||||
|
|
|
@ -81,7 +81,6 @@ export function Reporter(runner) {
|
|||
extra = " (" + extras.join(",") + ") ******** WARNING! ********";
|
||||
}
|
||||
log(` Total Tests: ${suite._countPass}/${suite._countTotal} passed ${getDelta(suite._t0)} ${extra} \n`);
|
||||
//log();
|
||||
if (suites.length > 0) {
|
||||
let currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countFail += suite._countFail;
|
||||
|
@ -91,13 +90,20 @@ export function Reporter(runner) {
|
|||
}
|
||||
else {
|
||||
clearTimeout(timer);
|
||||
log(`# status:${(suite._countPass === suite._countTotal) ? 0 : 1}`);
|
||||
const status = (suite._countPass === suite._countTotal) ? 0 : 1;
|
||||
log(`# status:${status}`);
|
||||
// Force quit after 5s
|
||||
setTimeout(() => {
|
||||
process.exit(status);
|
||||
}, 5000);
|
||||
}
|
||||
});
|
||||
runner.on('test', function (test) {
|
||||
forceOutput();
|
||||
const currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countTotal++;
|
||||
if (test._currentRetry === 0) {
|
||||
const currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countTotal++;
|
||||
}
|
||||
});
|
||||
runner.on('fail', function (test, error) {
|
||||
let currentSuite = suites[suites.length - 1];
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -83,7 +83,6 @@ function Reporter(runner) {
|
|||
extra = " (" + extras.join(",") + ") ******** WARNING! ********";
|
||||
}
|
||||
log(" Total Tests: " + suite._countPass + "/" + suite._countTotal + " passed " + getDelta(suite._t0) + " " + extra + " \n");
|
||||
//log();
|
||||
if (suites.length > 0) {
|
||||
var currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countFail += suite._countFail;
|
||||
|
@ -93,13 +92,20 @@ function Reporter(runner) {
|
|||
}
|
||||
else {
|
||||
clearTimeout(timer);
|
||||
log("# status:" + ((suite._countPass === suite._countTotal) ? 0 : 1));
|
||||
var status_1 = (suite._countPass === suite._countTotal) ? 0 : 1;
|
||||
log("# status:" + status_1);
|
||||
// Force quit after 5s
|
||||
setTimeout(function () {
|
||||
process.exit(status_1);
|
||||
}, 5000);
|
||||
}
|
||||
});
|
||||
runner.on('test', function (test) {
|
||||
forceOutput();
|
||||
var currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countTotal++;
|
||||
if (test._currentRetry === 0) {
|
||||
var currentSuite = suites[suites.length - 1];
|
||||
currentSuite._countTotal++;
|
||||
}
|
||||
});
|
||||
runner.on('fail', function (test, error) {
|
||||
var currentSuite = suites[suites.length - 1];
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -39,7 +39,7 @@
|
|||
"scripts": {
|
||||
"test": "exit 1"
|
||||
},
|
||||
"tarballHash": "0xc91a47e746497969d5176dac067ca4abab66aaa2da4d35d7337521e9bb619284",
|
||||
"tarballHash": "0x42112e8cd3f69c6a4576569adc37b074fa5b5b214749aa4916bf5634a34300a2",
|
||||
"types": "./lib/index.d.ts",
|
||||
"version": "5.0.6"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue