mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

ESLint dependency now requires Intl because it uses regexp unicode character properties. Fixes: https://github.com/nodejs/node/issues/41102 PR-URL: https://github.com/nodejs/node/pull/41105 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
31 lines
692 B
JavaScript
31 lines
692 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/node_modules/eslint').RuleTester;
|
|
const rule = require('../../tools/eslint-rules/alphabetize-errors');
|
|
|
|
new RuleTester().run('alphabetize-errors', rule, {
|
|
valid: [
|
|
`
|
|
E('AAA', 'foo');
|
|
E('BBB', 'bar');
|
|
E('CCC', 'baz');
|
|
`,
|
|
],
|
|
invalid: [
|
|
{
|
|
code: `
|
|
E('BBB', 'bar');
|
|
E('AAA', 'foo');
|
|
E('CCC', 'baz');
|
|
`,
|
|
errors: [{ message: 'Out of ASCIIbetical order - BBB >= AAA', line: 3 }]
|
|
},
|
|
]
|
|
});
|