1'use strict'; 2 3require('../common'); 4const { spawn } = require('child_process'); 5const { join } = require('path'); 6const { fixturesDir } = require('../common/fixtures'); 7 8spawn( 9 process.execPath, 10 [ 11 join(fixturesDir, 'esm_loader_not_found_cjs_hint_bare.mjs'), 12 ], 13 { 14 cwd: fixturesDir, 15 stdio: 'inherit' 16 } 17); 18