1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/Squid.test.ts

11 lines
233 B
TypeScript
Raw Normal View History

2019-11-07 12:24:55 +01:00
import * as assert from 'assert'
2019-06-20 00:20:09 +02:00
import * as squid from '../src/squid'
2018-10-17 10:12:40 +02:00
2019-06-20 00:20:09 +02:00
describe('Squid', () => {
describe('interface', () => {
it('should expose Ocean', async () => {
2018-10-17 10:12:40 +02:00
assert(squid.Ocean)
})
})
})