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

[next-lint] test: remove eslint config snapshot testing #77818

Merged

Conversation

devjiwonchoi
Copy link
Member

@devjiwonchoi devjiwonchoi commented Apr 4, 2025

Why?

The snapshot testing occasionally failed when the rules were modified in newer ESLint versions. This is because we snapshot-tested the whole eslint config output. However, this snapshot test is intended to verify if the necessary plugins were loaded, which can be done by checking the plugins property.

How?

Removed snapshot testing and added plugins to be checked along with the existing parser and settings checking.

@ijjk ijjk added created-by: Next.js team PRs by the Next.js team. tests labels Apr 4, 2025
Copy link
Member Author

This stack of pull requests is managed by Graphite. Learn more about stacking.

@devjiwonchoi devjiwonchoi changed the title [next-lint] test: remove rules snapshot testing [next-lint] test: remove config output snapshot testing Apr 4, 2025
@devjiwonchoi devjiwonchoi changed the title [next-lint] test: remove config output snapshot testing [next-lint] test: remove eslint config snapshot testing Apr 4, 2025
@ijjk
Copy link
Member

ijjk commented Apr 4, 2025

Failing test suites

Commit: bfdbb66

pnpm test-dev test/e2e/app-dir/rsc-basic/rsc-basic.test.ts

  • app dir - rsc basics > should be able to navigate between rsc routes
Expand output

● app dir - rsc basics › should be able to navigate between rsc routes

request.allHeaders: Target page, context or browser has been closed

  168 |         page.on('request', (request) => {
  169 |           requestsCount++
> 170 |           return request.allHeaders().then((headers) => {
      |                          ^
  171 |             if (
  172 |               headers['RSC'.toLowerCase()] === '1' &&
  173 |               // Prefetches also include `RSC`

  at Page.allHeaders (e2e/app-dir/rsc-basic/rsc-basic.test.ts:170:26)

Read more about building and testing Next.js in contributing.md.

@devjiwonchoi devjiwonchoi marked this pull request as ready for review April 4, 2025 07:22
@devjiwonchoi devjiwonchoi merged commit 694b3be into canary Apr 4, 2025
130 of 134 checks passed
@devjiwonchoi devjiwonchoi deleted the 04-04-_next-lint_test_remove_rules_snapshot_testing branch April 4, 2025 09:00
@eps1lon
Copy link
Member

eps1lon commented Apr 4, 2025

However, this snapshot test is intended to verify if the necessary plugins were loaded, which can be done by checking the plugins property.

That was not the intention. The intention is to check the full config so see if a bump to plugins counts as a breaking change. This should be reverted and reconsidered. What specifically in the config changes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
created-by: Next.js team PRs by the Next.js team. tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants