UNPKG

277 BJavaScriptView Raw
1#!/usr/bin/env node
2
3const apeCovering = require('ape-covering');
4
5// Measure coverage and save report.
6apeCovering.measureCoverage('ci/test.js', [
7 // Script args
8 ], {
9 dir: 'coverage' // Destination directory path
10 }, (err) => {
11 /*...*/
12 }
13);