mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2eff28fb7a
Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if ((!common.hasCrypto) || (!common.hasIntl)) {
|
|
common.skip('ESLint tests require crypto and Intl');
|
|
}
|
|
|
|
common.skipIfEslintMissing();
|
|
|
|
const RuleTester = require('../../tools/eslint/node_modules/eslint').RuleTester;
|
|
const rule = require('../../tools/eslint-rules/required-modules');
|
|
|
|
new RuleTester({
|
|
languageOptions: {
|
|
sourceType: 'script',
|
|
},
|
|
}).run('required-modules', rule, {
|
|
valid: [
|
|
{
|
|
code: 'require("common")',
|
|
options: [{ common: 'common' }]
|
|
},
|
|
{
|
|
code: 'foo',
|
|
options: []
|
|
},
|
|
{
|
|
code: 'require("common")',
|
|
options: [{ common: 'common(/index\\.(m)?js)?$' }]
|
|
},
|
|
{
|
|
code: 'require("common/index.js")',
|
|
options: [{ common: 'common(/index\\.(m)?js)?$' }]
|
|
},
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'foo',
|
|
options: [{ common: 'common' }],
|
|
errors: [{ message: 'Mandatory module "common" must be loaded.' }]
|
|
},
|
|
{
|
|
code: 'require("common/fixtures.js")',
|
|
options: [{ common: 'common(/index\\.(m)?js)?$' }],
|
|
errors: [{
|
|
message:
|
|
'Mandatory module "common" must be loaded.'
|
|
}]
|
|
},
|
|
{
|
|
code: 'require("somethingElse")',
|
|
options: [{ common: 'common' }],
|
|
errors: [{ message: 'Mandatory module "common" must be loaded.' }]
|
|
},
|
|
]
|
|
});
|