![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
instant-mocha
Advanced tools
Build tests with Webpack and run them with Mocha in one command
How does it compare to mocha-webpack / mochapack? Answered in the FAQ.
npm i -D mocha webpack instant-mocha
Note: webpack
and mocha
are peer-dependencies so you can provide any version
instant-mocha [test paths/globs...]
You can either use npx
(eg. npx instant-mocha ...
) or add it to package.json
scripts (eg. npm test
) to invoke it.
Watch mode. Re-compiles the Webpack build and re-run tests on file-changes.
Default: webpack.config.js
Path to the Webpack config.
For more info, run:
instant-mocha --help
instant-mocha ---webpack-config webpack.config.js --require setup.js 'tests/*.spec.js'
webpack.config.js
setup.js
. Note, this is not apart of the build and is loaded directly from Node.jstests/*.spec.js
Set devtool: 'source-map'
in your Webpack config.
Add webpackbar to your Webpack config.
node_modules
automatically externalized?They can't be automatically externalized because it's possible some dependencies require bundling or pre-processing. For example, packages in ESM format or deep-dependencies that are stubbed for testing.
It's recommended to externalize what you can in your Webpack config to speed up the build though. Consider using webpack-node-externals
to do this.
First of all, major thanks to mocha-webpack for the original implementation and serving the community.
This project was created from scratch because mocha-webpack
is no longer maintained and doesn't have Webpack 5 support.
Some notable improvements include:
mocha-webpack
uses Flow.mocha-webpack
returns the number of failed tests as the exit code. instant-mocha only uses exit code 1
for any test failures as per Bash convention.FAQs
Build tests with Webpack and run them with Mocha in one command
We found that instant-mocha demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.