mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 06:05:22 +00:00

PR-URL: https://github.com/nodejs/node/pull/36642 Fixes: https://github.com/nodejs/node/issues/36638 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
20 lines
492 B
JavaScript
20 lines
492 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const filePath = path.join(tmpdir.path, 'test-module-cache.json');
|
|
assert.throws(
|
|
() => require(filePath),
|
|
{ code: 'MODULE_NOT_FOUND' }
|
|
);
|
|
|
|
fs.writeFileSync(filePath, '[]');
|
|
|
|
const content = require(filePath);
|
|
assert.strictEqual(Array.isArray(content), true);
|
|
assert.strictEqual(content.length, 0);
|