mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
11 lines
223 B
TypeScript
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)
|
|
})
|
|
})
|
|
})
|