9 lines
		
	
	
		
			382 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			382 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as plugins from './tstest.plugins.js';
 | |
| import { coloredString as cs } from '@push.rocks/consolecolor';
 | |
| 
 | |
| export const TapPrefix = cs(`::TAP::`, 'pink', 'black');
 | |
| export const TapPretaskPrefix = cs(`::PRETASK::`, 'cyan', 'black');
 | |
| export const TapErrorPrefix = cs(` !!!TAP PROTOCOL ERROR!!! `, 'red', 'black');
 | |
| 
 | |
| export const TsTestPrefix = cs(`**TSTEST**`, 'pink', 'black');
 |