Unverified Commit 3e4cd345 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1215 from ethereum/remix_tests_import_fix_webpack_vscode

WIP: Import fix for vscode integration
parents ec49f918 fc5b5703
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 = {}
......
import commander from 'commander'
import Web3 from 'web3'
import Web3 = require('web3')
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 Web3 from 'web3'
import Web3 = require('web3')
import { compileFileOrFiles } from './compiler'
import { deployAll } from './deployer'
......
import async from 'async'
import * as changeCase from 'change-case'
import Web3 from 'web3'
import Web3 = require('web3')
import { RunListInterface, TestCbInterface, TestResultInterface, ResultCbInterface } from './types'
function getFunctionFullName (signature: string, methodIdentifiers) {
......
import 'mocha'
import * as async from 'async'
import Web3 from 'web3'
import Web3 = require('web3')
import * as assert from 'assert'
import { Provider } from 'remix-simulator'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment