-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
chore: don't clear TSServer Project Service between repo tests #7801
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
chore: don't clear TSServer Project Service between repo tests #7801
Conversation
Thanks for the PR, @JoshuaKGoldberg! typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community. The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately. Thanks again! 🙏 Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently on https://opencollective.com/typescript-eslint. |
✅ Deploy Preview for typescript-eslint ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -17,7 +14,6 @@ export function clearCaches(): void { | |||
clearProgramCacheOriginal(); | |||
clearWatchCaches(); | |||
clearTSConfigMatchCache(); | |||
clearTSServerProjectService(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, sorry for the accidental tag (meant to re-draft). Looks like CI still takes quite a while. We'll need to investigate more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
29m 5s
Run npx nx test eslint-plugin --coverage=false
> nx run eslint-plugin:test --coverage=false
PASS tests/rules/padding-line-between-statements.test.ts (20.724 s, 699 MB heap size)
PASS tests/rules/type-annotation-spacing.test.ts (16.747 s, 1151 MB heap size)
...
PR Checklist
Overview
createProjectService()
has no parameters. So I'm hopeful it can just ... stick around between tests, regardless of what physical or virtual file system names they use? If not, we'll have to look into using its APIs to clear files...