• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3require('../common');
4const fixtures = require('../common/fixtures');
5const { execSync } = require('child_process');
6
7execSync(process.execPath, {
8  encoding: 'utf8',
9  stdio: 'inherit',
10  env: {
11    ...process.env,
12    NODE_REPL_EXTERNAL_MODULE: fixtures.path('external-repl-module.js'),
13  },
14});
15