diff --git a/src/rules/no-standalone-expect.ts b/src/rules/no-standalone-expect.ts index bfe273465..4daa3c847 100644 --- a/src/rules/no-standalone-expect.ts +++ b/src/rules/no-standalone-expect.ts @@ -58,7 +58,7 @@ const isEach = (node: TSESTree.CallExpression): boolean => type BlockType = 'test' | 'function' | 'describe' | 'arrow' | 'template'; export default createRule< - [{ additionalTestBlockFunctions: string[] }], + [{ additionalTestBlockFunctions?: string[] }], 'unexpectedExpect' >({ name: __filename,