github-desktop/script/jest-actions-reporter.js
2020-07-09 19:28:28 +02:00

32 lines
871 B
JavaScript

/* eslint-disable @typescript-eslint/explicit-member-accessibility */
class JestActionsReporter {
constructor(globalConfig, options) {
this._globalConfig = globalConfig
this._options = options
}
onRunComplete(contexts, results) {
if (process.env.GITHUB_ACTIONS === 'true') {
return
}
for (const { testResults, testFilePath } of results.testResults) {
for (const { failureMessages, location } of testResults) {
if (location === null) {
continue
}
const { line, column } = location
for (const msg of failureMessages) {
const escapedMessage = `${msg}`.replace(/\r?\n/g, '%0A')
process.stdout.write(
`::error file=${testFilePath},line=${line},col=${column}::${escapedMessage}\n`
)
}
}
}
}
}
module.exports = JestActionsReporter