Unverified Commit 051826ef authored by Omkara's avatar Omkara Committed by GitHub

Merge pull request #1012 from fulldecent/patch-4

Compile if solidity is fixed version, fixes #1011
parents db52523f a285eef4
......@@ -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 }
}
......
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