github-pages-deploy-action/node_modules/@jest/console/build/getConsoleOutput.js

94 lines
2.1 KiB
JavaScript
Raw Normal View History

2020-03-31 20:42:07 +08:00
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.default = void 0;
function _chalk() {
const data = _interopRequireDefault(require('chalk'));
_chalk = function () {
return data;
};
return data;
}
2020-04-30 20:40:07 +08:00
function _jestMessageUtil() {
const data = require('jest-message-util');
2020-03-31 20:42:07 +08:00
2020-04-30 20:40:07 +08:00
_jestMessageUtil = function () {
2020-03-31 20:42:07 +08:00
return data;
};
return data;
}
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {default: obj};
}
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
2020-04-30 20:40:07 +08:00
var _default = (
root,
verbose,
buffer, // TODO: make mandatory and take Config.ProjectConfig in 26
config = {
rootDir: root,
testMatch: []
}
) => {
2020-03-31 20:42:07 +08:00
const TITLE_INDENT = verbose ? ' ' : ' ';
const CONSOLE_INDENT = TITLE_INDENT + ' ';
2020-04-30 20:40:07 +08:00
const logEntries = buffer.reduce((output, {type, message, origin}) => {
2020-03-31 20:42:07 +08:00
message = message
.split(/\n/)
.map(line => CONSOLE_INDENT + line)
.join('\n');
let typeMessage = 'console.' + type;
2020-04-30 20:40:07 +08:00
let noStackTrace = true;
let noCodeFrame = true;
2020-03-31 20:42:07 +08:00
if (type === 'warn') {
message = _chalk().default.yellow(message);
typeMessage = _chalk().default.yellow(typeMessage);
2020-04-30 20:40:07 +08:00
noStackTrace = false;
noCodeFrame = false;
2020-03-31 20:42:07 +08:00
} else if (type === 'error') {
message = _chalk().default.red(message);
typeMessage = _chalk().default.red(typeMessage);
2020-04-30 20:40:07 +08:00
noStackTrace = false;
noCodeFrame = false;
2020-03-31 20:42:07 +08:00
}
2020-04-30 20:40:07 +08:00
const options = {
noCodeFrame,
noStackTrace
};
const formattedStackTrace = (0, _jestMessageUtil().formatStackTrace)(
origin,
config,
options
);
2020-03-31 20:42:07 +08:00
return (
output +
TITLE_INDENT +
_chalk().default.dim(typeMessage) +
'\n' +
2020-04-30 20:40:07 +08:00
message.trimRight() +
'\n' +
_chalk().default.dim(formattedStackTrace.trimRight()) +
'\n\n'
2020-03-31 20:42:07 +08:00
);
}, '');
2020-04-30 20:40:07 +08:00
return logEntries.trimRight() + '\n';
2020-03-31 20:42:07 +08:00
};
exports.default = _default;