Files
bch-js/test/unit/fixtures/encryption-mock.js
T

20 lines
317 B
JavaScript
Raw Normal View History

2020-07-27 21:32:51 -07:00
/*
Mock data used for unit tests against the Encryption library.
*/
const successMock = {
success: true,
publicKey:
2021-01-02 15:41:12 -08:00
'03fcc37586d93af1e146238217989924e0ab1f011c34e1a23aec529354d5b28eb4'
2020-07-27 21:32:51 -07:00
}
const failureMock = {
success: false,
2021-01-02 15:41:12 -08:00
publicKey: 'not found'
2020-07-27 21:32:51 -07:00
}
module.exports = {
successMock,
failureMock
}