2022-03-13 00:30:32 +01:00
|
|
|
import * as plugins from './tstest.plugins.js';
|
2023-07-13 03:19:11 +02:00
|
|
|
import { coloredString as cs } from '@push.rocks/consolecolor';
|
2018-08-04 14:23:07 +02:00
|
|
|
|
2018-08-05 23:20:32 +02:00
|
|
|
export const TapPrefix = cs(`::TAP::`, 'pink', 'black');
|
2023-11-09 21:06:06 +01:00
|
|
|
export const TapPretaskPrefix = cs(`::PRETASK::`, 'cyan', 'black');
|
2018-08-05 23:20:32 +02:00
|
|
|
export const TapErrorPrefix = cs(` !!!TAP PROTOCOL ERROR!!! `, 'red', 'black');
|
2018-08-05 22:58:52 +02:00
|
|
|
|
2018-08-05 23:20:32 +02:00
|
|
|
export const TsTestPrefix = cs(`**TSTEST**`, 'pink', 'black');
|