19 lines
		
	
	
		
			420 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { tap, expect } from '../../ts_tapbundle/index.js';
 | |
| 
 | |
| // Simple test to debug TAP output
 | |
| tap.test('test 1', async () => {
 | |
|   console.log('Test 1 running');
 | |
|   expect(true).toBeTrue();
 | |
| });
 | |
| 
 | |
| tap.test('test 2 - skip', async (toolsArg) => {
 | |
|   toolsArg.skip('Skipping test 2');
 | |
|   expect(false).toBeTrue();
 | |
| });
 | |
| 
 | |
| tap.test('test 3', async () => {
 | |
|   console.log('Test 3 running');
 | |
|   expect(true).toBeTrue();
 | |
| });
 | |
| 
 | |
| tap.start(); |