mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
619 B
25 lines
619 B
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const RuleTester = require('../../tools/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: 'if (err) throw err;',
|
|
errors: [{ message: 'Use assert.ifError(err) instead.' }]
|
|
},
|
|
{
|
|
code: 'if (error) { throw error; }',
|
|
errors: [{ message: 'Use assert.ifError(error) instead.' }]
|
|
}
|
|
]
|
|
});
|
|
|