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.
27 lines
527 B
27 lines
527 B
7 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
|
||
|
const RuleTester = require('../../tools/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 }]
|
||
|
}
|
||
|
]
|
||
|
});
|