8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { expect, tap } from '../../../ts_tapbundle/index.js';
|
|
|
|
tap.test('subdirectory test execution', async () => {
|
|
console.log('This test verifies subdirectory test discovery works');
|
|
expect(true).toBeTrue();
|
|
});
|
|
|
|
tap.start(); |