-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: support testing on bun #18
Conversation
Run node tests with bun using env var `NODE_EXEC=bun`
Bah, it's broken on Windows, support might be added in a week or so - https://twitter.com/bunjavascript/status/1753267105909416079 |
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.
good with this. Do we want to wait and see on bun+windows before merge?
we should wait on this until bun+windows.. https://github.com/ipfs-examples/test-ipfs-example/actions/runs/7831891366/job/21369332451?pr=18
Bun supports Windows 10 and later as of 1.1 |
test/bun.spec.ts
Outdated
if (platform() === 'win32') { | ||
it.skip('bun does not run on windows', () => {}) | ||
|
||
return | ||
} |
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.
if (platform() === 'win32') { | |
it.skip('bun does not run on windows', () => {}) | |
return | |
} |
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.
testing changes in #19
Removes the windows skip and updates bun builds on top of #18
## [1.3.0](v1.2.1...v1.3.0) (2024-04-23) ### Features * support testing on bun ([#18](#18)) ([73085b7](73085b7))
🎉 This PR is included in version 1.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Run node tests with bun using env var
NODE_EXEC=bun