-
Notifications
You must be signed in to change notification settings - Fork 664
Write list of unparsed fourslash tests to file #1447
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
base: main
Are you sure you want to change the base?
Conversation
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.
Pull Request Overview
This PR enhances the fourslash test conversion script to track progress by writing a list of unparsed tests to a file. This allows developers to monitor which tests still need to be parsed and converted.
- Adds functionality to write unparsed test names to a file for progress tracking
- Sorts the unparsed files list before writing to ensure consistent output
- Replaces console logging with file output for better persistence
.github/workflows/ci.yml
Outdated
run: npm run updatefailing | ||
run: | | ||
npm run convertfourslash | ||
npm run updatefailing |
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.
npm run updatefailing
will run convertFourslash
(twice), so, not sure why we'd need to add it here.
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.
Yeah I was just trying to figure out why the test is failing even though I already committed the file...
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.
I see. Yeah, I don't get why it's failing. 🙁
This reverts commit a827871.
That way we know our progress.