mirror of https://github.com/embarklabs/embark.git
Merge pull request #950 from cryptomental/feature/add-nobrowser-option-to-coverage
cmd, run_tests: Add --nobrowser option for runCoverage.
This commit is contained in:
commit
9d34bed725
|
@ -275,6 +275,7 @@ class Cmd {
|
|||
' <endpoint> - ' + __('connect to and use the specified node'))
|
||||
.option('-d , --gasDetails', __('print the gas cost for each contract deployment when running the tests'))
|
||||
.option('-c , --coverage', __('generate a coverage report after running the tests (vm only)'))
|
||||
.option('--nobrowser', __('do not start browser after coverage report is generated'))
|
||||
.option('--locale [locale]', __('language to use (default: en)'))
|
||||
.option('--loglevel [loglevel]', __('level of logging to display') + ' ["error", "warn", "info", "debug", "trace"]', /^(error|warn|info|debug|trace)$/i, 'warn')
|
||||
.description(__('run tests'))
|
||||
|
@ -295,7 +296,7 @@ class Cmd {
|
|||
checkDeps();
|
||||
i18n.setOrDetectLocale(options.locale);
|
||||
embark.runTests({file, loglevel: options.loglevel, gasDetails: options.gasDetails,
|
||||
node: options.node, coverage: options.coverage});
|
||||
node: options.node, coverage: options.coverage, noBrowser: options.nobrowser});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -140,6 +140,9 @@ module.exports = {
|
|||
console.log(`Coverage report created. You can find it here: ${fs.dappPath('coverage/__root__/index.html')}\n`);
|
||||
const opn = require('opn');
|
||||
const _next = () => { next(); };
|
||||
if (options.noBrowser) {
|
||||
return next();
|
||||
}
|
||||
opn(fs.dappPath('coverage/__root__/index.html'), {wait: false})
|
||||
.then(() => new Promise(resolve => setTimeout(resolve, 1000)))
|
||||
.then(_next, _next);
|
||||
|
|
Loading…
Reference in New Issue