mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
32 lines
871 B
JavaScript
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
|