mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 11:59:00 +00:00
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('node:assert');
|
|
|
|
process.default = 1;
|
|
import('node:process').then(common.mustCall((processModule) => {
|
|
assert.strictEqual(processModule.default.default, 1);
|
|
}));
|