13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
import { tap, expect } from '../../ts_tapbundle/index.js';
|
|
|
|
tap.test('check for gaps in streaming', async () => {
|
|
// This should print "ABCD" with no gaps
|
|
process.stdout.write("A");
|
|
process.stdout.write("B");
|
|
process.stdout.write("C");
|
|
process.stdout.write("D\n");
|
|
expect(true).toEqual(true);
|
|
});
|
|
|
|
export default tap.start();
|