1import test from 'node:test';
2
3test('extraneous async activity test', () => {
4  setTimeout(() => { throw new Error(); }, 100);
5});
6