Commit 51d0f0f5 authored by William Entriken's avatar William Entriken Committed by yann300

Less semicolons

parent 3546b409
......@@ -167,16 +167,16 @@ var runTestFiles = function (filepath, isDirectory, web3, opts) {
fs.walkSync = function (start, callback) {
fs.readdirSync(start).forEach(name => {
if (name === 'node_modules') {
return; // hack
return // hack
}
var abspath = path.join(start, name);
var abspath = path.join(start, name)
if (fs.statSync(abspath).isDirectory()) {
fs.walkSync(abspath, callback);
fs.walkSync(abspath, callback)
} else {
callback(abspath);
callback(abspath)
}
});
};
})
}
fs.walkSync(filepath, foundpath => {
if (foundpath.indexOf('_test.sol') < 0) {
return
......
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