In a non-test file (trackingXiti.ts), I have a function like this:
const mapPageViewEventName = (...) => {
....
const map = xitiViewMap(...)
...
}
The rule warns about the line with the xitiViewMap function, probably because it starts with xit.
- Shouldn't the jest rules only run on
*.test.{js,tsx?} files?
- The rule should match
xit( and not xitSomethingElse(