remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/run.js

22 lines
539 B

const commander = require('commander')
const Web3 = require('web3')
const RemixTests = require('./index.js')
const fs = require('fs')
7 years ago
commander.action(function (filename) {
let web3 = new Web3()
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'))
if (fs.lstatSync(filename).isDirectory()) {
RemixTests.runTestFiles(filename, web3)
} else {
RemixTests.runTestFile(filename, web3)
}
})
7 years ago
if (!process.argv.slice(2).length) {
console.log('please specify filename')
7 years ago
}
commander.parse(process.argv)