diff options
author | wanderer <mjbecze@gmail.com> | 2015-02-11 03:38:48 +0800 |
---|---|---|
committer | wanderer <mjbecze@gmail.com> | 2015-02-11 03:38:48 +0800 |
commit | d1a31850ce5f8893c2d1d77a68e7635af199233a (patch) | |
tree | 392ed0a80b454740064efb0e3f586ecb97298ae3 | |
parent | cf002a461167847647e91f0be0c6c0df6867a937 (diff) | |
download | dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar.gz dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar.bz2 dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar.lz dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar.xz dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.tar.zst dexon-d1a31850ce5f8893c2d1d77a68e7635af199233a.zip |
added transaction tests to index.js
-rw-r--r-- | index.js | 3 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -13,6 +13,9 @@ Object.defineProperties(tests, { stateTests: { get: require('require-all').bind(this, __dirname + '/StateTests/') }, + transactionTests:{ + get: require('require-all').bind(this, __dirname + '/TransactionTests/') + }, vmTests: { get: require('require-all').bind(this, __dirname + '/VMTests') } diff --git a/package.json b/package.json index 6b1446756..a53fbae6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereum-tests", - "version": "0.0.3", + "version": "0.0.4", "description": "tests for ethereum", "main": "index.js", "scripts": { |