You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
583 B
14 lines
583 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BREADCRUMB = exports.INDENT = exports.WARNING = exports.ERROR = exports.MEASURE = exports.COMPLETION = exports.PENDING = exports.FAIL = exports.PASS = void 0;
|
|
const USE_ASCII = false;
|
|
exports.PASS = '✓';
|
|
exports.FAIL = '✗';
|
|
exports.PENDING = '⧖';
|
|
exports.COMPLETION = '\u203A'; //'▸';
|
|
exports.MEASURE = '◷';
|
|
exports.ERROR = USE_ASCII ? '[x]' : '❌ ';
|
|
exports.WARNING = USE_ASCII ? '[!]' : '⚠️ ';
|
|
exports.INDENT = ' ';
|
|
exports.BREADCRUMB = '»';
|
|
//# sourceMappingURL=symbols.js.map
|