diff options
author | wanderer <wanderer@users.noreply.github.com> | 2015-08-25 08:52:49 +0800 |
---|---|---|
committer | wanderer <wanderer@users.noreply.github.com> | 2015-08-25 08:52:49 +0800 |
commit | 898e7c4a77c60a16ab4f67367838c83570f1a469 (patch) | |
tree | 44a5a817d3f2291d905b7f00f2bae65306710732 | |
parent | 7c5eb24e0caf64e88a19be64c6000ef0372718ca (diff) | |
download | tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar.gz tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar.bz2 tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar.lz tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar.xz tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.tar.zst tangerine-tests-898e7c4a77c60a16ab4f67367838c83570f1a469.zip |
Delete index.js
-rw-r--r-- | index.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/index.js b/index.js deleted file mode 100644 index 0427fe759..000000000 --- a/index.js +++ /dev/null @@ -1,25 +0,0 @@ -var tests = module.exports = {}; - -Object.defineProperties(tests, { - blockchainTests: { - get: require('require-all').bind(this, __dirname + '/BlockchainTests') - }, - basicTests: { - get: require('require-all').bind(this, __dirname + '/BasicTests/') - }, - trieTests: { - get: require('require-all').bind(this, __dirname + '/TrieTests/') - }, - 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') - }, - powTests: { - get: require('require-all').bind(this, __dirname + '/PoWTests') - } -}); |