Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Ensure your node examples/*.js work by using them as mocha tests.
Add mecha
to your package.json devDependencies
npm install
Now your example files can use mocha when run.
// This is my awesome project example at examples/awesome.js
var mecha = require('mecha');
// use `describe' and `it`
mecha.log("This will be printed only when run directly as an example");
// when run as an example use a dot reporter, if no argument is given
// a silent reporter will be used.
mecha({reporter: 'dot'});
Users run your example, and see the message printed above
node examples/awesome.js
But when run as a test, they see test reports.
mocha examples/awesome.js
You can therefore include your example files to your test harness,
add a test/examples.js
file to your project
// Ensure all examples are working
require('../examples/awesome')
FAQs
Ensure your node examples/*.js work by using them as mocha tests.
The npm package mecha receives a total of 0 weekly downloads. As such, mecha popularity was classified as not popular.
We found that mecha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.