i.e ``` it.each()("one", function () { return expect(1).toBe(1); }); ``` doesn't trigger `no-test-return-statement` This'll be because the way we track if we're in a test case or not based on `CallExpression` nodes. I expect it'll be fixed by the refactor I described [here](https://github.com/jest-community/eslint-plugin-jest/pull/792#issuecomment-803498682), which'll change the node we return `true` on.