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
Our node 20 cli tests are currently broken due to a bug in mock-fs which exists due to node v20.5 creating an optimization for fs.ReadFileSync that mock-fs is not compatible with. We have a few different ways we could fix this, so just need to chose one:
pin to node v20.4
remove the utf-8 option from our calls to fs.ReadFileSync in our tests
stop using mock-fs (only used in one file in a few tests)
The text was updated successfully, but these errors were encountered:
Our node 20 cli tests are currently broken due to a bug in mock-fs which exists due to node v20.5 creating an optimization for
fs.ReadFileSync
that mock-fs is not compatible with. We have a few different ways we could fix this, so just need to chose one:utf-8
option from our calls tofs.ReadFileSync
in our testsThe text was updated successfully, but these errors were encountered: