mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
|
import {assert} from "chai"
|
||
|
import SecretStore from "../../src/secretstore/SecretStore"
|
||
|
|
||
|
describe("SecretStore", () => {
|
||
|
|
||
|
describe("#test()", () => {
|
||
|
it("should return instance", () => {
|
||
|
|
||
|
const fu = new SecretStore().test()
|
||
|
assert(fu)
|
||
|
})
|
||
|
})
|
||
|
})
|