mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 06:47:09 +01:00
Tweak report output
This commit is contained in:
parent
d5ecac7489
commit
670a1b828d
2 changed files with 6 additions and 6 deletions
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
|
|
@ -2096,9 +2096,9 @@ var Align;
|
||||||
Align["None"] = "---";
|
Align["None"] = "---";
|
||||||
})(Align = exports.Align || (exports.Align = {}));
|
})(Align = exports.Align || (exports.Align = {}));
|
||||||
exports.Icon = {
|
exports.Icon = {
|
||||||
skip: '✖️',
|
skip: '⬜',
|
||||||
success: '✔️',
|
success: '🟩',
|
||||||
fail: '❌' // ':x:'
|
fail: '🟥' // ':x:'
|
||||||
};
|
};
|
||||||
function link(title, address) {
|
function link(title, address) {
|
||||||
return `[${title}](${address})`;
|
return `[${title}](${address})`;
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@ export enum Align {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Icon = {
|
export const Icon = {
|
||||||
skip: '✖️', // ':heavy_multiplication_x:'
|
skip: '⬜', // ':heavy_multiplication_x:'
|
||||||
success: '✔️', // ':heavy_check_mark:'
|
success: '🟩', // ':heavy_check_mark:'
|
||||||
fail: '❌' // ':x:'
|
fail: '🟥' // ':x:'
|
||||||
}
|
}
|
||||||
|
|
||||||
export function link(title: string, address: string): string {
|
export function link(title: string, address: string): string {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue