UNPKG

277 BJavaScriptView Raw
1/** This is an example Apemanfile to use apeman-task-coverage */
2
3'use strict'
4
5module.exports = {
6 $pkg: { /* ... */ },
7 $tasks: {
8 // Define your own task.
9 'my-task-01': require('apeman-task-coverage')('nodeunit test/*_test.js', {
10 out: 'coverage'
11 })
12 }
13}