You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(rules): add support for function declaration as test case
Add support for the following test file structure.
```js
test('my test', myTest)
function myTest() {
expect(true).toBe(true)
}
```
Methods that are directly referenced will be ananalyzed for the
following rules `expect-expect` `no-if` `no-test-return-statement`,
`no-try-expect`
0 commit comments