squid-js/test/Squid.test.ts

11 lines
233 B
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import * as assert from 'assert'
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)
})
})
})