feat(cli): Enhance test discovery with support for single file and glob pattern execution using improved CLI argument detection

This commit is contained in:
2025-05-15 14:37:55 +00:00
parent 1f73751a8c
commit a57edeef64
11 changed files with 1660 additions and 1252 deletions

8
test/subdir/test.sub.ts Normal file
View File

@ -0,0 +1,8 @@
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();

8
test/test.glob.ts Normal file
View File

@ -0,0 +1,8 @@
import { expect, tap } from '@push.rocks/tapbundle';
tap.test('glob pattern test execution', async () => {
console.log('This test verifies glob pattern execution works');
expect(true).toBeTrue();
});
tap.start();

8
test/test.single.ts Normal file
View File

@ -0,0 +1,8 @@
import { expect, tap } from '@push.rocks/tapbundle';
tap.test('single file test execution', async () => {
console.log('This test verifies single file execution works');
expect(true).toBeTrue();
});
tap.start();