mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import { assert } from 'chai'
|
|
|
|
describe('Datatokens', () => {
|
|
|
|
describe('#test()', () => {
|
|
it('should test', async () => {
|
|
const test = true
|
|
assert(test === true)
|
|
})
|
|
})
|
|
})
|