Merge pull request #1012 from fulldecent/patch-4

Compile if solidity is fixed version, fixes #1011
pull/7/head
Omkara 6 years ago committed by GitHub
commit 051826efe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      remix-tests/src/compiler.js

@ -41,7 +41,7 @@ function compileFileOrFiles (filename, isDirectory, opts, cb) {
let c = fs.readFileSync(path.join(filepath, file)).toString()
const s = /^(import)\s['"](remix_tests.sol|tests.sol)['"];/gm
if (file.indexOf('_test.sol') > 0 && c.regexIndexOf(s) < 0) {
c = c.replace(/(pragma solidity \^\d+\.\d+\.\d+;)/, '$1\nimport \'remix_tests.sol\';')
c = c.replace(/(pragma solidity \^?\d+\.\d+\.\d+;)/, '$1\nimport \'remix_tests.sol\';')
}
sources[file] = { content: c }
}

Loading…
Cancel
Save