import { tap, expect } from '../../ts_tapbundle/index.js'; // This test runs serially (no para__ in filename) tap.test('serial test 2', async (toolsArg) => { await toolsArg.delayFor(500); console.log('Serial test 2 completed'); expect(true).toBeTrue(); }); tap.start();