Skip to content

Commit ec722fb

Browse files
authored
Add missing documentation of ignoreTypeOfTestName option
1 parent 2557a20 commit ec722fb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/rules/valid-title.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ describe('foo', () => {
175175
interface Options {
176176
ignoreSpaces?: boolean;
177177
ignoreTypeOfDescribeName?: boolean;
178+
ignoreTypeOfTestName?: boolean;
178179
disallowedWords?: string[];
179180
mustNotMatch?: Partial<Record<'describe' | 'test' | 'it', string>> | string;
180181
mustMatch?: Partial<Record<'describe' | 'test' | 'it', string>> | string;
@@ -194,6 +195,13 @@ Default: `false`
194195
When enabled, the type of the first argument to `describe` blocks won't be
195196
checked.
196197

198+
#### `ignoreTypeOfTestName`
199+
200+
Default: `false`
201+
202+
When enabled, the type of the first argument to `it` blocks won't be
203+
checked.
204+
197205
#### `disallowedWords`
198206

199207
Default: `[]`

0 commit comments

Comments
 (0)