0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/es-module/test-esm-forbidden-globals.mjs
Ben Noordhuis d7d6526260 tools: fix node-core/required-modules eslint rule
Make the node-core/required-modules eslint rule smart enough
to recognize that `import '../common/index.mjs'` in ESM files
imports the mandatory 'common' module.

PR-URL: https://github.com/nodejs/node/pull/27545
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2019-05-06 04:57:49 +02:00

26 lines
615 B
JavaScript

// Flags: --experimental-modules
import '../common/index.mjs';
// eslint-disable-next-line no-undef
if (typeof arguments !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof this !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof exports !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof require !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof module !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof __filename !== 'undefined') {
throw new Error('not an ESM');
}
if (typeof __dirname !== 'undefined') {
throw new Error('not an ESM');
}