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('user test in parallel group 1', async (toolsArg) => { console.log(`[${timestamp()}] User test started`); await toolsArg.delayFor(1000); console.log(`[${timestamp()}] User test completed`); expect(true).toBeTrue(); }); tap.start();