mirror of https://github.com/embarklabs/embark.git
16 lines
493 B
JavaScript
16 lines
493 B
JavaScript
/* global __dirname require */
|
|
|
|
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'});
|
|
})();
|