-
-
Notifications
You must be signed in to change notification settings - Fork 14
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(deno): allow direct CommonJS execution in Deno #300
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #300 +/- ##
==========================================
+ Coverage 94.02% 94.80% +0.77%
==========================================
Files 31 31
Lines 2476 2500 +24
Branches 363 367 +4
==========================================
+ Hits 2328 2370 +42
+ Misses 146 128 -18
Partials 2 2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Now, it's possible to run tests that use
require
,module.exports
andmodule
directly with Deno 🎉Important
The incompatibility with CJS and Deno without npm doesn't seem to be an issue on Deno's side: denoland/deno#21149
eval
and maintaining high test isolation 🔐