projecte_ionic/node_modules/istanbul-reports/lib/text-lcov/index.js

18 lines
354 B
JavaScript
Raw Permalink Normal View History

2022-02-09 18:30:03 +01:00
'use strict';
/*
Copyright 2012-2015, Yahoo Inc.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
const LcovOnly = require('../lcovonly');
class TextLcov extends LcovOnly {
constructor(opts) {
super({
...opts,
file: '-'
});
}
}
module.exports = TextLcov;