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

12 lines
220 B
TypeScript

import { assert } from 'chai'
describe('Datatokens', () => {
describe('#test()', () => {
it('should test', async () => {
const test = true
assert(test === true)
})
})
})