12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
|
require('should');
|
||
|
|
||
|
if (!process.env.TRAVIS) {
|
||
|
if (typeof __cov === 'undefined') {
|
||
|
process.on('exit', function () {
|
||
|
require('semicov').report();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
require('semicov').init('lib');
|
||
|
}
|