tstest/test/subdir/test.sub.ts

8 lines
223 B
TypeScript

import { expect, tap } from '@push.rocks/tapbundle';
tap.test('subdirectory test execution', async () => {
console.log('This test verifies subdirectory test discovery works');
expect(true).toBeTrue();
});
tap.start();