diff --git a/remix-tests/src/compiler.js b/remix-tests/src/compiler.js index 932e3911da..7b450e97c4 100644 --- a/remix-tests/src/compiler.js +++ b/remix-tests/src/compiler.js @@ -47,8 +47,9 @@ function compileFileOrFiles (filename, isDirectory, opts, cb) { if (foundpath.split('.').pop() === 'sol') { let c = fs.readFileSync(foundpath).toString() const s = /^(import)\s['"](remix_tests.sol|tests.sol)['"];/gm + let includeTestLibs = '\nimport \'remix_tests.sol\';\n' if (foundpath.indexOf('_test.sol') > 0 && c.regexIndexOf(s) < 0) { - c = c.replace(/(pragma solidity \^?\d+\.\d+\.\d+;)/, '$1\nimport \'remix_tests.sol\';') + c = includeTestLibs.concat(c) } sources[foundpath] = { content: c } }