find import for remix-tests

pull/1/head
Iuri Matias 7 years ago committed by yann300
parent ae515bd3e7
commit aba399e12c
  1. 4
      src/app/compiler/compiler-imports.js

@ -2,6 +2,7 @@
var base64 = require('js-base64').Base64
var swarmgw = require('swarmgw')
var request = require('request')
var assertLibCode = require('remix-tests').assertLibCode
module.exports = class CompilerImports {
constructor () {
@ -70,6 +71,9 @@ module.exports = class CompilerImports {
import (url, loadingCb, cb) {
var self = this
if (url === 'remix_tests.sol') {
return cb(null, assertLibCode, 'remix_tests.sol', 'remix_tests', 'remix_tests.sol')
}
var imported = this.previouslyHandled[url]
if (imported) {
return cb(null, imported.content, imported.cleanUrl, imported.type, url)

Loading…
Cancel
Save