make code uglify-compatible - do not use Function.name

This commit is contained in:
Ivan Tivonenko
2016-02-04 05:48:19 +02:00
parent a0776a77b6
commit 76e18fd30e
4 changed files with 13 additions and 13 deletions

View File

@@ -78,10 +78,10 @@ function UIntTest() {
function parseLedger4320278() {
it(`can parse object`, (done) => {
it(`can parse object`, done => {
this.timeout(30e3);
const json = loadFixture('as-ledger-4320278.json');
json.forEach((e) => {
json.forEach(e => {
assertRecycles(e.binary);
});
done();