UNPKG

374 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * @file Test this project.
5 */
6
7"use strict";
8
9var runNodeunit = require('apeman-dev-commons-testing/lib/run_nodeunit'),
10 path = require('path');
11
12var basedir = path.resolve(__dirname, '..');
13
14process.chdir(basedir);
15
16runNodeunit([
17 '*_test.js',
18 'test/*_test.js',
19 'test/**/*_test.js'
20], {
21 reporter: 'default'
22}, function () {
23
24});
\No newline at end of file