1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-24 01:02:31 +01:00

update transforms tests

This commit is contained in:
Ian Storm Taylor 2016-12-07 15:19:49 -08:00
parent 6822e8b5ec
commit 48411c769f

View File

@ -173,7 +173,7 @@ describe('transforms', async () => {
let state = Raw.deserialize(input, { terse: true })
state = fn(state)
const output = Raw.serialize(state, { terse: true })
strictEqual(strip(output), strip(expected))
assert.deepEqual(strip(output), strip(expected))
})
}
})