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>
33 lines
816 B
JavaScript
33 lines
816 B
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/prefer-common-mustnotcall');
|
|
|
|
const message = 'Please use common.mustNotCall(msg) instead of ' +
|
|
'common.mustCall(fn, 0) or common.mustCall(0).';
|
|
|
|
new RuleTester().run('prefer-common-mustnotcall', rule, {
|
|
valid: [
|
|
'common.mustNotCall(fn)',
|
|
'common.mustCall(fn)',
|
|
'common.mustCall(fn, 1)',
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'common.mustCall(fn, 0)',
|
|
errors: [{ message }]
|
|
},
|
|
{
|
|
code: 'common.mustCall(0)',
|
|
errors: [{ message }]
|
|
},
|
|
]
|
|
});
|