Skip to content

Commit

Permalink
chore(merge): merge with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
veritem committed Nov 19, 2023
2 parents 6e0c8cc + 67e17fd commit 43f8675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/expect-expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default createEslintRule<Options, MESSAGE_ID>({
}
},
'Program:exit'() {
unchecked.forEach(node => context.report({ node, messageId: 'expectedExpect', data: { expected: customExpressions.join(' or ') } }))
unchecked.forEach(node => context.report({ node: node.callee, messageId: 'expectedExpect', data: { expected: customExpressions.join(' or ') } }))
}
}
}
Expand Down

0 comments on commit 43f8675

Please sign in to comment.