Getting Started
1. Installation
First, install the mocha
package as a devDependency using your favorite package manager:
2. Test File
Create the following example.test.js
file under a test/
directory:
3. Running Mocha
Now, run npx mocha
to execute the Mocha package on the newly created test file:
You should see passing output like:
Optional: test
script
Most projects include a package.json
"test"
script:
You can then run that script with your favorite package manager:
Next Steps
See:
- CLI for the commands you can pass to
mocha
- Configuring for creating a persistent test configuration file
- Editor Plugins for improving the Mocha experience in your editor
You can see real live live example code in our example repositories: