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
228 B
TypeScript
Raw Normal View History

2019-11-11 12:27:18 +01:00
import 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)
})
})
})