Skip to content

Commit

Permalink
chore(no-standalone-expect): mark option as optional (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jul 31, 2020
1 parent e874435 commit a303c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/no-standalone-expect.ts
Expand Up @@ -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,
Expand Down

0 comments on commit a303c00

Please sign in to comment.