UNPKG

765 BJavaScriptView Raw
1// This is a hack to make browserify skip tap
2var tap;
3try {
4 tap = require('./' + 'tap');
5} catch (ex) {
6 tap = {
7 run: function() {
8 throw new Error('Sorry, tap reporter not available');
9 }
10 };
11}
12
13module.exports = {
14 'junit': require('./junit'),
15 'default': require('./default'),
16 'skip_passed': require('./skip_passed'),
17 'minimal': require('./minimal'),
18 'html': require('./html'),
19 'eclipse': require('./eclipse'),
20 'machineout': require('./machineout'),
21 'tap': tap,
22 'nested': require('./nested'),
23 'verbose' : require('./verbose'),
24 'lcov' : require('./lcov')
25 // browser test reporter is not listed because it cannot be used
26 // with the command line tool, only inside a browser.
27};