UNPKG

352 BJavaScriptView Raw
1/**
2 * This is example Apemanfile to use "apeman-task-contrib-nodeunit".
3 */
4
5"use strict";
6
7module.exports = {
8 $package: {/*...*/},
9 $tasks: {
10 "run-my-unit-test": {
11 "$worker": "apeman-task-contrib-nodeunit",
12 "$args": [
13 "test/*_test.js"
14 ],
15 "$options": {}
16 }
17 }
18};
\No newline at end of file