Skip to content

Commit

Permalink
test: clearing require cache crashes esm loader
Browse files Browse the repository at this point in the history
This test shows the regression introduced in v11.4.0: clearing out the
require.cache crashes node when using the `--experimental-modules` flag.
Refs: #25482

PR-URL: #25491
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
aduh95 authored and targos committed May 14, 2019
1 parent 89fda94 commit 1757250
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/es-module/test-esm-loader-cache-clearing.js
@@ -0,0 +1,11 @@
// Flags: --experimental-modules
'use strict';
require('../common');

const { cache } = require;

Object.keys(cache).forEach((key) => {
delete cache[key];
});
// Require the same module again triggers the crash
require('../common');

0 comments on commit 1757250

Please sign in to comment.