web3 updated in remix-tests

pull/5370/head
aniket-engg 5 years ago committed by Aniket
parent 64339cb0ce
commit d55bec5770
  1. 2542
      remix-tests/package-lock.json
  2. 2
      remix-tests/package.json
  3. 2
      remix-tests/src/deployer.ts
  4. 2
      remix-tests/src/run.ts
  5. 2
      remix-tests/src/runTestFiles.ts
  6. 2
      remix-tests/src/runTestSources.ts
  7. 2
      remix-tests/src/testRunner.ts
  8. 2
      remix-tests/tests/testRunner.ts

File diff suppressed because it is too large Load Diff

@ -46,7 +46,7 @@
"remix-simulator": "0.1.9-alpha.10",
"remix-solidity": "0.3.20",
"signale": "^1.4.0",
"web3": "1.0.0-beta.36",
"web3": "^1.2.4",
"winston": "^3.0.0"
},
"peerDependencies": {

@ -1,6 +1,6 @@
import async from 'async'
var remixLib = require('remix-lib')
import Web3 = require('web3')
import Web3 from 'web3';
export function deployAll(compileResult: object, web3: Web3, callback) {
let compiledObject = {}

@ -1,5 +1,5 @@
import commander from 'commander'
import Web3 = require('web3')
import Web3 from '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, compilationInterface, ASTInterface, Options, AstNode } from './types'
import colors from 'colors'
import Web3 = require('web3')
import Web3 from 'web3';
import { compileFileOrFiles } from './compiler'
import { deployAll } from './deployer'

@ -5,7 +5,7 @@ import { compileContractSources } from './compiler'
import { deployAll } from './deployer'
import { runTest } from './testRunner'
import Web3 = require('web3')
import Web3 from 'web3';
import { Provider } from 'remix-simulator'
import { FinalResult, SrcIfc, compilationInterface, ASTInterface, Options, TestResultInterface, AstNode } from './types'

@ -1,6 +1,6 @@
import async from 'async'
import * as changeCase from 'change-case'
import Web3 = require('web3')
import Web3 from 'web3';
import { RunListInterface, TestCbInterface, TestResultInterface, ResultCbInterface,
CompiledContract, AstNode, Options, FunctionDescription, UserDocumentation } from './types'

@ -1,6 +1,6 @@
import 'mocha'
import * as async from 'async'
import Web3 = require('web3')
import Web3 from 'web3';
import * as assert from 'assert'
import { Provider } from 'remix-simulator'

Loading…
Cancel
Save