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();