diff --git a/packages/ripple-binary-codec/test/binary-json-test.js b/packages/ripple-binary-codec/test/binary-json-test.js index 5248b66d..8c6772fb 100644 --- a/packages/ripple-binary-codec/test/binary-json-test.js +++ b/packages/ripple-binary-codec/test/binary-json-test.js @@ -14,10 +14,12 @@ describe('ripple-binary-codec', function() { function makeSuite(name, entries) { describe(name, function() { entries.forEach((t, test_n) => { + // eslint-disable-next-line max-len it(`${name}[${test_n}] can encode ${truncateForDisplay(json(t.json))} to ${truncateForDisplay(t.binary)}`, () => { assert.equal(t.binary, encode(t.json)); }); + // eslint-disable-next-line max-len it(`${name}[${test_n}] can decode ${truncateForDisplay(t.binary)} to ${truncateForDisplay(json(t.json))}`, () => { const decoded = decode(t.binary);