mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 01:07:57 +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>
37 lines
1015 B
JavaScript
37 lines
1015 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/prefer-assert-iferror');
|
|
|
|
new RuleTester().run('prefer-assert-iferror', rule, {
|
|
valid: [
|
|
'assert.ifError(err);',
|
|
'if (err) throw somethingElse;',
|
|
'throw err;',
|
|
'if (err) { throw somethingElse; }',
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'require("assert");\n' +
|
|
'if (err) throw err;',
|
|
errors: [{ message: 'Use assert.ifError(err) instead.' }],
|
|
output: 'require("assert");\n' +
|
|
'assert.ifError(err);'
|
|
},
|
|
{
|
|
code: 'require("assert");\n' +
|
|
'if (error) { throw error; }',
|
|
errors: [{ message: 'Use assert.ifError(error) instead.' }],
|
|
output: 'require("assert");\n' +
|
|
'assert.ifError(error);'
|
|
},
|
|
]
|
|
});
|