Code coverage report for istanbul/lib/register-plugins.js

Statements: 100% (4 / 4)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (4 / 4)     

All files » istanbul/lib/ » register-plugins.js
1
2 /*
3 Copyright (c) 2012, Yahoo! Inc. All rights reserved.
4 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
5 */
6 1 var Store = require('./store'),
7 Report = require('./report'),
8 Command = require('./command');
9
10 1 Store.loadAll();
11 1 Report.loadAll();
12 1 Command.loadAll();
13
14
15
16