fix(ci): test runs on windows runner#308
Conversation
This commit fixes an somewhat odd problem with vitest on windows runners in that it cannot process properly `await import(...)` statements. The changes in this commit represent the minimal changes to make the tests run properly instead of hanging, though there are other improvements to CI forthcoming.
|
So there was a test failure from a |
tschneidereit
left a comment
There was a problem hiding this comment.
In theory it'd be interesting to see what the tsc compiled code looks like here, and whether that indicates any explanation. In practice though, you've already spent a ton of time on this, and we should just land it and be done with it. Thank you for getting this sorted!
|
Yeah so what's really weird is that theoretically this code shouldn't even be converted by One thing I didn't try was slotting in something like |
This commit fixes an somewhat odd problem with vitest on windows runners in that it cannot process properly
await import(...)statements.The changes in this commit represent the minimal changes to make the tests run properly instead of hanging, though there are other improvements to CI forthcoming.