diff options
author | Dimitry <dimitry@ethdev.com> | 2017-02-17 20:19:07 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2017-02-17 20:19:07 +0800 |
commit | 0e7c51bb0a4755a2bebe11c72a579a962b3c205b (patch) | |
tree | 98d45d474f720014f348e7f5ba85a975b135e22c /RPCTests/main.js | |
parent | a20bb807ab40fb06277ca278a00c77eac57d551a (diff) | |
download | dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar.gz dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar.bz2 dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar.lz dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar.xz dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.tar.zst dexon-tests-0e7c51bb0a4755a2bebe11c72a579a962b3c205b.zip |
move tests to separate folders
Diffstat (limited to 'RPCTests/main.js')
-rw-r--r-- | RPCTests/main.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/RPCTests/main.js b/RPCTests/main.js index ffb5cfa62..e3089f0d0 100644 --- a/RPCTests/main.js +++ b/RPCTests/main.js @@ -16,10 +16,10 @@ function cb(){} function main() { -testutils.readTestsInFolder("./scripts"); +testutils.readTestsInFolder("./scripts/tests"); async.series([ function(cb) { - utils.setDebug(false); + utils.setDebug(true); ethconsole.startNode(ethpath, testdir + "/ethnode1", testdir + "/genesis.json", 30305, cb); }, function(cb) { @@ -53,7 +53,7 @@ function(cb) { function prepareDynamicVars(finished) { async.series([ - function(cb) { + function(cb) { ethconsole.runScriptOnNode(testdir + "/ethnode1", "./scripts/testNewAccount.js", {}, cb); }, function(cb) { @@ -117,3 +117,4 @@ function runAllTests(finished) } main(); +//testutils.readTestsInFolder("./scripts/tests"); |