From 7746404905aa82e7613b697a9f3d5b4c3384fe40 Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Mon, 17 Sep 2018 15:25:00 -0400 Subject: [PATCH] Match coverage path --- lib/tests/run_tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tests/run_tests.js b/lib/tests/run_tests.js index 865e8a4ce..ee1f16e6f 100644 --- a/lib/tests/run_tests.js +++ b/lib/tests/run_tests.js @@ -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})