11 lines
306 B
TypeScript
11 lines
306 B
TypeScript
import { tap, expect } from '../../ts_tapbundle/index.js';
|
|
|
|
// This test runs in parallel group 2
|
|
tap.test('db test in parallel group 2', async (toolsArg) => {
|
|
console.log('DB test started');
|
|
await toolsArg.delayFor(800);
|
|
console.log('DB test completed');
|
|
expect(true).toBeTrue();
|
|
});
|
|
|
|
tap.start(); |