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
no-render-in-lifecycle gives false posivite when calling a function that starts with render:
beforeEach(()=>{setActivePinia(createTestingPinia());renderStoreInsideSetup(useLoggedInUserStore);// This throws false-positive - unexpecteduseComplianceStore().landingPageNavigationTriggered=true;});
Likely due to regex issue?
Steps to reproduce
Lint code from above
Error output/screenshots
Forbidden usage of `render` within testing framework `beforeEach` setupeslint[testing-library/no-render-in-lifecycle](https://github.com/testing-library/eslint-plugin-testing-library/tree/main/docs/rules/no-render-in-lifecycle.md)
Actually after reading more about the rule origin, maybe it's not a false positive... We don't actually render the component, we just use this to test pinia stores that use vue-query which relies on being inside of setup(), so we create a dummy component for these tests.
I guess, according to the article we should create a setup function instead and manually call it in each test..., is that the idea? Or is this rule meant to only apply to actually rendering the component?
Originally I said that it's a false-positive because examples only mention render() name, not renderSomethingCustom()
Have you read the Troubleshooting section?
Yes
Plugin version
v6.1.2
ESLint version
v8.57.0
Node.js version
v20.17.0
package manager and version
npm 10.8.2
Operating system
Ubuntu 24
Bug description
no-render-in-lifecycle gives false posivite when calling a function that starts with
render
:Likely due to regex issue?
Steps to reproduce
Lint code from above
Error output/screenshots
ESLint configuration
Rule(s) affected
testing-library/no-render-in-lifecycle
Anything else?
No response
Do you want to submit a pull request to fix this bug?
No
The text was updated successfully, but these errors were encountered: