mirror of https://github.com/embarklabs/embark.git
14 lines
461 B
JavaScript
14 lines
461 B
JavaScript
const fs = require('fs-extra');
|
|
const {execSync} = require('child_process');
|
|
const path = require('path');
|
|
const rimraf = require('util').promisify(require('rimraf'));
|
|
|
|
const reportDir = path.join(__dirname, '../coverage');
|
|
const cmd = `npx nyc report --reporter=html --report-dir=${reportDir}`;
|
|
|
|
(async () => {
|
|
await fs.mkdirp(reportDir);
|
|
await rimraf(path.join(reportDir, '*'));
|
|
execSync(cmd, {cwd: path.join(__dirname, '..'), stdio: 'inherit'});
|
|
})();
|