mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
25 lines
882 B
TypeScript
25 lines
882 B
TypeScript
import { assert } from 'chai'
|
|
import { EscrowAccessSecretStoreTemplate } from '../../../src/keeper/contracts/templates'
|
|
import config from '../../config'
|
|
import TestContractHandler from '../TestContractHandler'
|
|
import { Ocean } from '../../../src/ocean/Ocean'
|
|
|
|
let condition: EscrowAccessSecretStoreTemplate
|
|
|
|
describe('EscrowAccessSecretStoreTemplate', () => {
|
|
before(async () => {
|
|
const ocean: Ocean = await Ocean.getInstance(config)
|
|
await TestContractHandler.prepareContracts()
|
|
condition = ocean.keeper.templates.escrowAccessSecretStoreTemplate
|
|
})
|
|
|
|
// describe("#hashValues()", () => {
|
|
// it("should hash the values", async () => {
|
|
// const address = `0x${"a".repeat(40)}`
|
|
// const hash = await condition.hashValues(address, 15)
|
|
|
|
// assert.match(hash, /^0x[a-f0-9]{64}$/i)
|
|
// })
|
|
// })
|
|
})
|