1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
This commit is contained in:
Sebastian Gerske 2018-10-26 12:16:40 +02:00
parent ee1dd8e30b
commit dd227e74ed
2 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,6 @@ export default class Ocean {
if (!Ocean.instance) {
ConfigProvider.setConfig(config)
SecretStoreProvider.configure(config)
AquariusProvider.setAquarius(Aquarius)
Ocean.instance = new Ocean(await Keeper.getInstance())
}

View File

@ -38,9 +38,10 @@ describe("Asset", () => {
it("should purchase an asset", async () => {
// todo
const consumerAccount = accounts[5]
const order: Order = await testAsset.purchase(consumerAccount, timeout)
assert(order)
// todo
const consumerAccount = accounts[5]
const order: Order = await testAsset.purchase(consumerAccount, timeout)
assert(order)
})
})
})