sh33dafi/jest-sonar

View on GitHub
src/reporter/absolute-path-reporter.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const AbstractReporter = require('./abstract-reporter');

class AbsolutePathReporter extends AbstractReporter {
    constructor(rootDir) {
        super(rootDir);
    }

    mapFilePath(filePath) {
        return filePath;
    }
}

module.exports = AbsolutePathReporter;