Skip to content

Commit d10279e

Browse files
committed
chore(require-tothrow-message): fix tests
1 parent e48fade commit d10279e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/__tests__/rules.test.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ const numberOfRules = 35;
88
describe('rules', () => {
99
it('should have a corresponding doc for each rule', () => {
1010
ruleNames.forEach(rule => {
11+
// require-tothrow-message has been renamed to require-to-throw-message
12+
if (rule === 'require-tothrow-message') {
13+
return;
14+
}
15+
1116
const docPath = resolve(__dirname, '../../docs/rules', `${rule}.md`);
1217

1318
if (!existsSync(docPath)) {

0 commit comments

Comments
 (0)