Skip to content

Commit

Permalink
Replaced outdated runAll() test run code with info message displayed …
Browse files Browse the repository at this point in the history
…on npm test script execution
  • Loading branch information
holgerd77 committed Feb 11, 2019
1 parent 87f812a commit 84a3f3b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/tester.js
@@ -1,7 +1,6 @@
#!/usr/bin/env node

const argv = require('minimist')(process.argv.slice(2))
const async = require('async')
const tape = require('tape')
const testing = require('ethereumjs-testing')
const FORK_CONFIG = argv.fork || 'Byzantium'
Expand Down Expand Up @@ -246,12 +245,14 @@ function runTests (name, runnerArgs, cb) {
}

function runAll () {
require('./tester.js')
console.log('[INFO] Generic test cmd not used. See package.json for more specific test run cmds.')

/* require('./tester.js')
require('./genesishashes.js')
require('./constantinopleSstoreTest.js')
async.series([
// runTests.bind(this, 'VMTests', {}), // VM tests disabled since we don't support Frontier gas costs
runTests.bind(this, 'GeneralStateTests', {}),
runTests.bind(this, 'BlockchainTests', {})
])
]) */
}

0 comments on commit 84a3f3b

Please sign in to comment.