-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Build: Switch to an alternative node:fs
mocking system
#24920
Conversation
Removed dependencies detected. Learn more about Socket for GitHub ↗︎ 🚮 Removed packages: @types/[email protected], [email protected] |
Going to ask @valentinpalkovic since he merged my last pull request: who should I ask for feedback about the 'To Do Before Merge' in my pull request? |
node:fs
mocking system
Hi @samvv |
I can but I'm not sure if the unit tests failed because they allowed something invalid or because the new system is broken. Does somebody know anything more about the failing test cases? |
As far as I can see the mocks are not applied but the real files are loaded |
Oh thanks that is actually really helpful. I will try to make some time available this evening to work on it. |
node:fs
mocking systemnode:fs
mocking system
@samvv We've switched the entire monorepo over to Vitest. FYI, if you're going to resume this PR! |
@ndelangen would we really want to switch from a library to something we need to maintain ourselves? |
@shilman yes, I'm optimistic about that. |
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 367d4c2. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 from NxCloud. |
@samvv Do you see a possibility to take this PR over the finish line? We migrated to vitest in the mean time 😓 |
@samvv please re-open if you're interested in pursuing this further ❤️ |
Closes #24915
What I did
On recent versions of NodeJS, the tests failed to run due to
mock-fs
being outdated. This pull request should fix that by getting rid of mock-fs entirely. See backstage/backstage#20436 for some motivation why this would be a good thing.I created a new file
code/lib/core-common/src/mock.ts
that performs roughly the same features as mock-fs but in a different (hopefully more stable) manner. The testscode/lib/core-common/src/utils/__tests__/interpret-files.test.ts
andcode/lib/core-common/src/utils/__tests__/template.test.ts
were only adjusted in their import path, which now points tomock.ts
. The API remains the same.To Do Before Merge
mock.ts
is a good one. Do we need to create a separate package?Checklist for Contributors
Testing
The changes in this PR are covered in the following automated tests:
Manual testing
No manual testing should be necessary, as this is an issue related to the unit tests.
Documentation
MIGRATION.MD
Checklist for Maintainers
When this PR is ready for testing, make sure to add
ci:normal
,ci:merged
orci:daily
GH label to it to run a specific set of sandboxes. The particular set of sandboxes can be found incode/lib/cli/src/sandbox-templates.ts
Make sure this PR contains one of the labels below:
Available labels
bug
: Internal changes that fixes incorrect behavior.maintenance
: User-facing maintenance tasks.dependencies
: Upgrading (sometimes downgrading) dependencies.build
: Internal-facing build tooling & test updates. Will not show up in release changelog.cleanup
: Minor cleanup style change. Will not show up in release changelog.documentation
: Documentation only changes. Will not show up in release changelog.feature request
: Introducing a new feature.BREAKING CHANGE
: Changes that break compatibility in some way with current major version.other
: Changes that don't fit in the above categories.🦋 Canary release
This PR does not have a canary release associated. You can request a canary release of this pull request by mentioning the
@storybookjs/core
team here.core team members can create a canary release here or locally with
gh workflow run --repo storybookjs/storybook canary-release-pr.yml --field pr=<PR_NUMBER>