File: browser.js

package info (click to toggle)
node-nodeunit 0.11.3%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,076 kB
  • sloc: javascript: 3,323; makefile: 141
file content (7 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
var nodeunit = {};

nodeunit.core = require('./lib/nodeunit.js');
nodeunit.assert = require('./lib/assert.js');
nodeunit.reporter = require('./lib/reporters/browser.js');
nodeunit.run = new function (modules, options, callback) { return nodeunit.reporter.run;};
module.exports = nodeunit;