Type in console.log for tests.

This commit is contained in:
Richard Moore 2018-07-23 05:38:27 -04:00
parent 543ca19361
commit 4db19a1799
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295

@ -4,7 +4,7 @@ function getEthers(filename) {
var ethers = global.ethers
if (!ethers) { return undefined; }
console.log('Using global ethers; ' + filename);
assert.equal(ethers.platform, 'browser', 'platform: ' + ethers.platform + ' != "brwoser"');
assert.equal(ethers.platform, 'browser', 'platform: ' + ethers.platform + ' != "browser"');
return ethers;
}