mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 13:47:16 +00:00

test-worker-esm-missing-main failed in CI recently in a way that suggests that maybe the `does-not-exist.js` file did in fact exist. Maybe that isn't what happened at all, but let's rule it out by changing the use of `does-not-exist.js` from a file expected to be missing from the current working directory to a file in the temp directory, which the test will remove and recreate at the outset. PR-URL: https://github.com/nodejs/node/pull/27340 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
17 lines
555 B
JavaScript
17 lines
555 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const { Worker } = require('worker_threads');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
const missing = path.join(tmpdir.path, 'does-not-exist.js');
|
|
|
|
const worker = new Worker(missing, { execArgv: ['--experimental-modules'] });
|
|
|
|
worker.on('error', common.mustCall((err) => {
|
|
// eslint-disable-next-line node-core/no-unescaped-regexp-dot
|
|
assert(/Cannot find module .+does-not-exist.js/.test(err.message), err);
|
|
}));
|