You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was working on adding some new tests in the compile package (to expand coverage of existing behavior) and found that vitest doesn't work with the existing import style for ramda.
We currently use:
importRfrom'ramda'
We are currently on [email protected] and have been for some time, but I found in the 0.25 upgrade guide that when they changed to ESM, they said the import style needs to be changed to:
Once I made this change, then vitest has no problem importing all the compile package sources that use ramda. And it has no impact on behavior (tests all pass).
The text was updated successfully, but these errors were encountered:
I was working on adding some new tests in the
compile
package (to expand coverage of existing behavior) and found that vitest doesn't work with the existing import style for ramda.We currently use:
We are currently on [email protected] and have been for some time, but I found in the 0.25 upgrade guide that when they changed to ESM, they said the import style needs to be changed to:
See 0.25 upgrade guide:
ramda/ramda#2319
Once I made this change, then vitest has no problem importing all the
compile
package sources that use ramda. And it has no impact on behavior (tests all pass).The text was updated successfully, but these errors were encountered: