2021-04-04 18:03:05 +02:00
|
|
|
import test from 'ava'
|
2022-01-09 12:11:24 +01:00
|
|
|
import hash from './object-hash-wrapper.js'
|
2021-04-04 18:03:05 +02:00
|
|
|
|
2021-12-09 19:46:19 +01:00
|
|
|
test('#hash object', (t) => {
|
|
|
|
t.is(hash({ foo: 'bar' }), 'a75c05bdca7d704bdfcd761913e5a4e4636e956b')
|
2021-04-04 18:03:05 +02:00
|
|
|
})
|