UNPKG

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