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