Forked from christroutner/bch-js

This commit is contained in:
Chris Troutner
2020-07-27 21:32:51 -07:00
commit a9277bd199
123 changed files with 41995 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
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.")
})
})
})