* @param {string} path path * @returns {string} JSON content of a file
(path)
| 9 | * @returns {string} JSON content of a file |
| 10 | */ |
| 11 | function read(path) { |
| 12 | return JSON.stringify( |
| 13 | fs.readFileSync(join(__dirname, path), "utf8").replace(/\r\n?/g, "\n") |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | /** @type {import("../../../").Configuration[]} */ |
| 18 | module.exports = [ |
no test coverage detected