1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00
ocean.js/test/unit/Lib.test.ts
2020-06-23 21:02:08 +02:00

11 lines
223 B
TypeScript

import assert from 'assert'
import * as lib from '../../src/lib'
describe('Lib', () => {
describe('interface', () => {
it('should expose Ocean', async () => {
assert(lib.Ocean)
})
})
})