mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-21 16:51:59 -07:00
20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
/*
|
|
A Mocha test file for running end-to-end (e2e) tests.
|
|
*/
|
|
|
|
// import mocha from "mocha"
|
|
import chai from 'chai'
|
|
|
|
import sendToken from './send-token/send-token.js'
|
|
const { assert } = chai
|
|
|
|
describe('#end-to-end tests', () => {
|
|
describe('#send-tokens', () => {
|
|
it('SLPDB should update balances in less than 10 seconds', async () => {
|
|
const result = await sendToken.sendTokenTest()
|
|
|
|
assert(result, true, 'True expected if test passed successfully.')
|
|
})
|
|
})
|
|
})
|