feat(tstest): Enhance tstest with fluent API, suite grouping, tag filtering, fixture & snapshot testing, and parallel execution improvements

This commit is contained in:
2025-05-16 00:21:32 +00:00
parent 1c5cf46ba9
commit 2b01d949f2
30 changed files with 1504 additions and 173 deletions

View File

@ -0,0 +1,11 @@
import { tap, expect } from '../../ts_tapbundle/index.js';
// This test runs in parallel group 2
tap.test('api test in parallel group 2', async (toolsArg) => {
console.log('API test started');
await toolsArg.delayFor(800);
console.log('API test completed');
expect(true).toBeTrue();
});
tap.start();