mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
433bd1b04d
PR-URL: https://github.com/nodejs/node/pull/52322 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
'use strict';
|
|
|
|
const { test, run } = require('node:test');
|
|
|
|
test('recursive run() calls', async () => {
|
|
for await (const event of run({ files: [__filename] }));
|
|
});
|