mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-21 16:51:59 -07:00
19 lines
481 B
JavaScript
19 lines
481 B
JavaScript
/*
|
|
A Mocha test file for running end-to-end (e2e) tests.
|
|
*/
|
|
|
|
//const mocha = require("mocha")
|
|
const assert = require("chai").assert
|
|
|
|
const sendToken = require("./send-token/send-token")
|
|
|
|
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.")
|
|
})
|
|
})
|
|
})
|