Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[no-render-in-lifecycle] false positive #1000

Open
Maxim-Mazurok opened this issue Apr 1, 2025 · 1 comment
Open

[no-render-in-lifecycle] false positive #1000

Maxim-Mazurok opened this issue Apr 1, 2025 · 1 comment
Labels
bug Something isn't working triage Pending to be triaged by a maintainer

Comments

@Maxim-Mazurok
Copy link

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:

beforeEach(() => {
  setActivePinia(createTestingPinia());
  renderStoreInsideSetup(useLoggedInUserStore); // This throws false-positive - unexpected
  useComplianceStore().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)

ESLint configuration

...

...compat
    .extends("plugin:jest-formatting/recommended", "plugin:vitest/all", "plugin:testing-library/vue")
    .map((config) => ({
      ...config,
      files: ["src/**/__tests__/*", "**/*.spec.ts", "**/*.spec.tsx", "**/*.skip.ts"],
    })),

...

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

@Maxim-Mazurok Maxim-Mazurok added bug Something isn't working triage Pending to be triaged by a maintainer labels Apr 1, 2025
@Maxim-Mazurok
Copy link
Author

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()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working triage Pending to be triaged by a maintainer
Projects
None yet
Development

No branches or pull requests

1 participant