mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
|
import '../common/index.mjs';
|
||
|
import { strictEqual } from 'node:assert';
|
||
|
|
||
|
import '../fixtures/recursive-a.cjs';
|
||
|
|
||
|
strictEqual(global.counter, 1);
|
||
|
delete global.counter;
|