1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 23:12:52 +02: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 }) let state = Raw.deserialize(input, { terse: true })
state = fn(state) state = fn(state)
const output = Raw.serialize(state, { terse: true }) const output = Raw.serialize(state, { terse: true })
strictEqual(strip(output), strip(expected)) assert.deepEqual(strip(output), strip(expected))
}) })
} }
}) })