@ -1,6 +1,6 @@
import async from 'async'
var remixLib = require('remix-lib')
import Web3 from 'web3'
import Web3 = require('web3')
export function deployAll(compileResult: object, web3: Web3, callback) {
let compiledObject = {}
@ -1,5 +1,5 @@
import commander from 'commander'
import { runTestFiles } from './runTestFiles'
import fs from './fileSystem'
import { Provider } from 'remix-simulator'
@ -3,7 +3,7 @@ import fs from './fileSystem'
import { runTest } from './testRunner'
import { TestResultInterface, ResultsInterface } from './types'
import colors from 'colors'
import { compileFileOrFiles } from './compiler'
import { deployAll } from './deployer'
import * as changeCase from 'change-case'
import { RunListInterface, TestCbInterface, TestResultInterface, ResultCbInterface } from './types'
function getFunctionFullName (signature: string, methodIdentifiers) {
import 'mocha'
import * as async from 'async'
import * as assert from 'assert'