mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
26 lines
514 B
TypeScript
26 lines
514 B
TypeScript
import * as assert from "assert"
|
|
import * as squid from "../src/squid"
|
|
|
|
describe("Squid", () => {
|
|
|
|
describe("interface", () => {
|
|
|
|
it("should expose Ocean", async () => {
|
|
assert(squid.Ocean)
|
|
})
|
|
|
|
it("should expose Logger", async () => {
|
|
assert(squid.Logger)
|
|
})
|
|
|
|
it("should expose Asset", async () => {
|
|
assert(squid.Asset)
|
|
})
|
|
|
|
it("should expose Order", async () => {
|
|
assert(squid.Order)
|
|
})
|
|
})
|
|
|
|
})
|