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,13 @@
import { tap, expect } from '../../ts_tapbundle/index.js';
// This test runs in parallel group 1
const timestamp = () => new Date().toISOString().substr(11, 12);
tap.test('auth test in parallel group 1', async (toolsArg) => {
console.log(`[${timestamp()}] Auth test started`);
await toolsArg.delayFor(1000);
console.log(`[${timestamp()}] Auth test completed`);
expect(true).toBeTrue();
});
tap.start();