aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.js5
-rw-r--r--package.json2
2 files changed, 5 insertions, 2 deletions
diff --git a/index.js b/index.js
index 732cb7b26..0427fe759 100644
--- a/index.js
+++ b/index.js
@@ -13,10 +13,13 @@ Object.defineProperties(tests, {
stateTests: {
get: require('require-all').bind(this, __dirname + '/StateTests/')
},
- transactionTests:{
+ 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')
}
});
diff --git a/package.json b/package.json
index beadb63bc..1e0ad9c28 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ethereum-tests",
- "version": "0.0.5",
+ "version": "0.0.6",
"description": "tests for ethereum",
"main": "index.js",
"scripts": {