Merge pull request #854 from embark-framework/match-coverage-paths

Match coverage path
This commit is contained in:
Iuri Matias 2018-09-18 12:42:20 -04:00 committed by GitHub
commit 91ffdede00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ module.exports = {
if (err) {
return next(err);
}
console.log(`Coverage report created. You can find it here: ${fs.dappPath('coverage/index.html')}\n`);
console.log(`Coverage report created. You can find it here: ${fs.dappPath('coverage/__root__/index.html')}\n`);
const opn = require('opn');
const _next = () => { next(); };
opn(fs.dappPath('coverage/__root__/index.html'), {wait: false})