diff --git a/docs/rules/valid-title.md b/docs/rules/valid-title.md index cbf4a208d..a0904b97a 100644 --- a/docs/rules/valid-title.md +++ b/docs/rules/valid-title.md @@ -175,6 +175,7 @@ describe('foo', () => { interface Options { ignoreSpaces?: boolean; ignoreTypeOfDescribeName?: boolean; + ignoreTypeOfTestName?: boolean; disallowedWords?: string[]; mustNotMatch?: Partial> | string; mustMatch?: Partial> | string; @@ -187,12 +188,12 @@ Default: `false` When enabled, the leading and trailing spaces won't be checked. -#### `ignoreTypeOfDescribeName` +#### `ignoreTypeOfDescribeName` & `ignoreTypeOfTestName` Default: `false` -When enabled, the type of the first argument to `describe` blocks won't be -checked. +When enabled, the type of the first argument to `describe`/`test` blocks won't +be checked. #### `disallowedWords`