mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import assert from 'assert-diff'
|
|
import accountSetWithDeletedNode from './fixtures/rippled/account-set-with-deleted-node.json'
|
|
import parseSettings from '../src/ledger/parse/settings'
|
|
|
|
describe('Settings unit tests', function () {
|
|
it('parseSettings does not error with DeletedNode', function () {
|
|
assert.deepStrictEqual(
|
|
parseSettings(accountSetWithDeletedNode.result),
|
|
{}
|
|
)
|
|
})
|
|
})
|